Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
- sdk: '>=3.3.0 <4.0.0'

- swiss_knife: ^3.2.0
- dom_tools: ^2.3.0
- color_palette_generator: ^2.0.1
- intl: ^0.19.0

- lints: ^3.0.0
- test: ^1.25.2
- path: ^1.9.0
- dependency_validator: ^3.2.3
- build_runner: ^2.4.8
- build_web_compilers: ^4.0.9
- collection: ^1.18.0
  • Loading branch information
gmpassos committed Feb 15, 2024
1 parent f99fb63 commit bcf2bda
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 18 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 2.1.0

- sdk: '>=3.3.0 <4.0.0'

- swiss_knife: ^3.2.0
- dom_tools: ^2.3.0
- color_palette_generator: ^2.0.1
- intl: ^0.19.0

- lints: ^3.0.0
- test: ^1.25.2
- path: ^1.9.0
- dependency_validator: ^3.2.3
- build_runner: ^2.4.8
- build_web_compilers: ^4.0.9
- collection: ^1.18.0

## 2.0.5

- swiss_knife: ^3.1.3
Expand Down
3 changes: 1 addition & 2 deletions lib/src/chart_engine_apexcharts.dart
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,7 @@ class ChartEngineApexCharts extends ChartEngine {

class RenderedApexCharts extends RenderedChart {
RenderedApexCharts(
ChartEngine engine, String type, chartObject, ChartData chartData)
: super(engine, type, chartObject, chartData);
super.engine, super.type, super.chartObject, super.chartData);

@override
void refresh() {
Expand Down
4 changes: 1 addition & 3 deletions lib/src/chart_engine_chartjs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,7 @@ class ChartEngineChartJS extends ChartEngine {
}

class RenderedChartJS extends RenderedChart {
RenderedChartJS(
ChartEngine engine, String type, chartObject, ChartData chartData)
: super(engine, type, chartObject, chartData);
RenderedChartJS(super.engine, super.type, super.chartObject, super.chartData);

@override
void refresh() {
Expand Down
26 changes: 13 additions & 13 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: chart_engine
description: Chart generator with interchangeable chart engines, like ChartJS and ApexCharts.
version: 2.0.5
version: 2.1.0
homepage: https://github.com/Colossus-Services/chart_engine

environment:
sdk: '>=2.13.0 <3.0.0'
sdk: '>=3.3.0 <4.0.0'

dependencies:
swiss_knife: ^3.1.3
dom_tools: ^2.1.9
color_palette_generator: ^2.0.0
swiss_knife: ^3.2.0
dom_tools: ^2.3.0
color_palette_generator: ^2.0.1
amdjs: ^2.0.3
intl: ^0.18.0
intl: ^0.19.0

dev_dependencies:
lints: ^2.0.1
test: ^1.22.1
path: ^1.8.3
dependency_validator: ^3.2.2
build_runner: ^2.3.3
build_web_compilers: ^3.2.7
collection: ^1.16.0
lints: ^3.0.0
test: ^1.25.2
path: ^1.9.0
dependency_validator: ^3.2.3
build_runner: ^2.4.8
build_web_compilers: ^4.0.9
collection: ^1.18.0

#dependency_overrides:
# swiss_knife:
Expand Down

0 comments on commit bcf2bda

Please sign in to comment.