Skip to content

Commit

Permalink
Merge pull request #49 from blacklabel/docs/readme-update-v3.1.0
Browse files Browse the repository at this point in the history
docs/readme-update-v3.1.0
  • Loading branch information
pawelfus authored Jan 7, 2025
2 parents 4ad3aab + 26bf230 commit aef1d40
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [3.1.0](https://github.com/blacklabel/multicolor_series/pull/48) (2025-01-07)

### Bug fixes

* Resolved a compatibility issue with with Highcharts v12.0.0+, which prevented the module from working properly.

### Upgrade notes

* Imports are now retrieved from global Highcharts object.

### [3.0.0](https://github.com/blacklabel/multicolor_series/pull/44) (2024-11-18)

### Features
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Go to project page to see this module in action: [https://blacklabel.github.io/m

## General prerequisites

- For version **3.1.0**: Highcharts **v12.0.0+**
- For version **3.0.0**: Highcharts **v11.3.0+**
- For version **2.4.0 - 3.0.0**: Highcharts **v10.0.0 - v11.2.0**
- For version **2.3.0**: Highcharts **v9.2.0 - v9.3.3**
Expand Down
4 changes: 2 additions & 2 deletions dist/multicolor-series.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
----
* Multicolor Series v3.1.0 (2025-01-07)
*
* (c) 2012-2024 Black Label
* (c) 2012-2025 Black Label
*
* License: MIT
*/
Expand Down
7 changes: 7 additions & 0 deletions dist/multicolor-series.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ decorator = [
'/**',
'----',
'*',
'* (c) 2012-2024 Black Label',
'* (c) 2012-2025 Black Label',
'*',
'* License: MIT',
'*/',
Expand Down
7 changes: 4 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
});
</script>

<script src="https://code.highcharts.com/highcharts.src.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="dist/multicolor-series.js"></script>
<script src="samples/demo.js" defer></script>

Expand Down Expand Up @@ -106,6 +106,7 @@ <h1>Multicolor Series Highcharts Module</h1>
<h2 id="prerequisites">General prerequisites</h2>
<p>This module requires Highcharts package with the following versions installed in your project:</p>
<ul class="prerequisites-list">
<li>For version <b>3.1.0</b>: Highcharts <b>v12.0.0+</b></li>
<li>For version <b>3.0.0</b>: Highcharts <b>v11.3.0+</b></li>
<li>For version <b>2.4.0 - 3.0.0</b>: Highcharts <b>v10.0.0 - v11.2.0</b></li>
<li>For version <b>2.3.0</b>: Highcharts <b>v9.2.0 - v9.3.3</b></li>
Expand Down Expand Up @@ -168,7 +169,7 @@ <h3>Basic usage example with Typescript (React):</h3>
// The package allows you to import both `Highcharts.SeriesMulticolorLineOptions` and
// `Highcharts.SeriesMulticolorAreaOptions` interfaces, accordingly to the series.
// Interfaces extend the default series options.

const App = () => {
// Type the chart options.
const options: Highcharts.Options = {
Expand Down Expand Up @@ -275,7 +276,7 @@ <h2 id="license">License</h2>
<img class="logo" src="https://blacklabel.net/wp-content/uploads/2023/09/blacklabel_logo_white.png"
alt="Black Label">
</a>
© 2024
© 2025
<div class="social">
<a class="social-link" href="https://github.com/blacklabel" title="GitHub">
<img class="social-img"
Expand Down
2 changes: 1 addition & 1 deletion license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2024 Black Label
Copyright 2025 Black Label

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Multicolor series",
"version": "3.0.0",
"version": "3.1.0",
"title": "Multicolor",
"author": {
"name": "Black Label",
Expand All @@ -13,7 +13,7 @@
}
],
"dependencies": {
"highcharts": ">11.3.0"
"highcharts": ">12.0.0"
},
"demo": [
"https://jsfiddle.net/BlackLabel/ou4L32cn/",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "highcharts-multicolor-series",
"version": "3.0.0",
"version": "3.1.0",
"description": "Highcharts plugin that adds new series: multicolor-series, where you can define color for each part of a path, between two points.",
"main": "./dist/multicolor-series.js",
"types": "./dist/multicolor-series.d.ts",
Expand Down

0 comments on commit aef1d40

Please sign in to comment.