Skip to content

Commit f78e2bc

Browse files
authoredMay 7, 2024··
Merge pull request #136 from xdev-software/develop
Release
2 parents 33e3d7d + 320db9c commit f78e2bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+323
-72
lines changed
 

‎.github/workflows/checkBuild.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
cache: 'maven'
4444

4545
- name: Build with Maven
46-
run: ./mvnw -B clean package -P run-integration-tests
46+
# Java 17 is required for tests
47+
run: ./mvnw -B clean package ${{ matrix.java >=17 && '-P run-integration-tests' || '-Dmaven.test.skip=true' }}
4748

4849
- name: Check for uncommited changes
4950
run: |

‎CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.3.0
2+
* Allows creation of mixed charts #128
3+
* New chart class: ``MixedChart``
4+
* Some classes have been renamed
5+
* ``Data`` -> ``HomogeneousData``
6+
* ``AbstractChart`` -> ``HomogeneousChart``
7+
* Slim down test dependencies
8+
19
## 1.2.0
210
* Add TimeScale and TimeTicks to allow building linear time charts #90
311
* Add options for the [Zoom plugin](https://www.chartjs.org/chartjs-plugin-zoom/latest/) #117

0 commit comments

Comments
 (0)
Please sign in to comment.