Skip to content

Commit

Permalink
Bump package versions
Browse files Browse the repository at this point in the history
The following packages have been updated:
jaspr               : 0.8.2 -> 0.9.0
jaspr_builder       : 0.8.2 -> 0.9.0
jaspr_cli           : 0.8.2 -> 0.9.0
jaspr_flutter_embed : 0.1.2 -> 0.1.3
jaspr_riverpod      : 0.3.5 -> 0.3.6
jaspr_router        : 0.2.3 -> 0.3.0
jaspr_test          : 0.8.2 -> 0.9.0
  • Loading branch information
schultek authored and github-actions[bot] committed Sep 10, 2023
1 parent 10bf8d5 commit 74dd08f
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion packages/jaspr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased minor
## 0.9.0

- Added *Static Site Generation* support.

Expand Down
2 changes: 1 addition & 1 deletion packages/jaspr/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr
description: Modern web framework for building websites in Dart that feels like Flutter but supports server-side rendering.
version: 0.8.2
version: 0.9.0
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues
documentation: https://docs.page/schultek/jaspr
Expand Down
4 changes: 2 additions & 2 deletions packages/jaspr_builder/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_builder
description: Builders for jaspr
version: 0.8.2
version: 0.9.0
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues

Expand All @@ -19,7 +19,7 @@ dependencies:
collection: ^1.15.0
dart_style: ^2.2.3
glob: ^2.1.1
jaspr: ^0.8.2
jaspr: ^0.9.0
path: ^1.8.0
source_gen: ^1.2.0

Expand Down
6 changes: 3 additions & 3 deletions packages/jaspr_cli/lib/src/version.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ignore_for_file: directives_ordering
// GENERATED FILE - DO NOT MODIFY

const jasprCliVersion = "0.8.2";
const jasprCoreVersion = "0.8.2";
const jasprBuilderVersion = "0.8.2";
const jasprCliVersion = "0.9.0";
const jasprCoreVersion = "0.9.0";
const jasprBuilderVersion = "0.9.0";
2 changes: 1 addition & 1 deletion packages/jaspr_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_cli
description: A command line interface to create, serve and build jaspr applications.
version: 0.8.2
version: 0.9.0
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues
documentation: https://docs.page/schultek/jaspr
Expand Down
4 changes: 4 additions & 0 deletions packages/jaspr_flutter_embed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.3

- `jaspr` upgraded to `0.9.0`

## 0.1.2

- `jaspr` upgraded to `0.8.0`
Expand Down
4 changes: 2 additions & 2 deletions packages/jaspr_flutter_embed/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_flutter_embed
description: Flutter element embedding bindings for jaspr.
version: 0.1.2
version: 0.1.3
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues
documentation: https://docs.page/schultek/jaspr
Expand All @@ -17,7 +17,7 @@ environment:
dependencies:
flutter:
sdk: flutter
jaspr: ^0.8.0
jaspr: ^0.9.0
js: ^0.6.5

dev_dependencies:
Expand Down
4 changes: 4 additions & 0 deletions packages/jaspr_riverpod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.6

- `jaspr` upgraded to `0.9.0`

## 0.3.5

- `jaspr` upgraded to `0.8.0`
Expand Down
4 changes: 2 additions & 2 deletions packages/jaspr_riverpod/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_riverpod
description: Riverpod for Jaspr
version: 0.3.5
version: 0.3.6
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues

Expand All @@ -12,7 +12,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
jaspr: ^0.8.0
jaspr: ^0.9.0
meta: ^1.9.1
riverpod: ^2.3.2

Expand Down
2 changes: 1 addition & 1 deletion packages/jaspr_router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased minor
## 0.3.0

- Added *Static Site Generation* support. Pages are automatically generated for each route.

Expand Down
4 changes: 2 additions & 2 deletions packages/jaspr_router/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_router
description: A routing component for jaspr.
version: 0.2.3
version: 0.3.0
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues

Expand All @@ -12,7 +12,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
jaspr: ^0.8.1
jaspr: ^0.9.0

dev_dependencies:
jaspr_test: '>=0.1.0 <1.0.0'
Expand Down
4 changes: 2 additions & 2 deletions packages/jaspr_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: jaspr_test
description: Testing utilities for jaspr.
version: 0.8.2
version: 0.9.0
homepage: https://github.com/schultek/jaspr
issue_tracker: https://github.com/schultek/jaspr/issues

Expand All @@ -15,7 +15,7 @@ environment:
dependencies:
html: ^0.15.0
http: '>=0.13.0 <2.0.0'
jaspr: ^0.8.2
jaspr: ^0.9.0
meta: ^1.7.0
test: ^1.22.0

Expand Down

0 comments on commit 74dd08f

Please sign in to comment.