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.12.0 -> 0.13.0
jaspr_builder             : 0.12.0 -> 0.13.0
jaspr_cli                 : 0.12.0 -> 0.13.0
jaspr_flutter_embed       : 0.3.1 -> 0.3.2
jaspr_riverpod            : 0.3.11 -> 0.3.12
jaspr_router              : 0.4.1 -> 0.4.2
jaspr_test                : 0.12.0 -> 0.13.0
mobx_hooks_experiment     : 0.1.0 -> 0.1.1 (No Changelog)
package_riverpod          : 0.1.0 -> 0.1.1 (No Changelog)
preload_images_experiment : 0.1.0 -> 0.1.1 (No Changelog)
scoped_styles_experiment  : 0.1.0 -> 0.1.1 (No Changelog)
backend_dart_frog         : 0.1.0 -> 0.1.1 (No Changelog)
backend_shelf             : 0.1.0 -> 0.1.1 (No Changelog)
dart_quotes               : 0.0.1 -> 0.0.2 (No Changelog)
flutter_embedding_demo    : 0.1.0 -> 0.1.1 (No Changelog)
flutter_plugin_interop    : 0.1.0 -> 0.1.1 (No Changelog)
jaspr_pad                 : 0.1.0 -> 0.1.1 (No Changelog)
  • Loading branch information
schultek authored and github-actions[bot] committed May 22, 2024
1 parent 554e1ed commit 1f1816e
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.13.0

- Added `Head` component to render metadata inside the documents `<head>`.

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.12.0
version: 0.13.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.12.0
version: 0.13.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.12.0
jaspr: ^0.13.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.12.0";
const jasprCoreVersion = "0.12.0";
const jasprBuilderVersion = "0.12.0";
const jasprCliVersion = "0.13.0";
const jasprCoreVersion = "0.13.0";
const jasprBuilderVersion = "0.13.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.12.0
version: 0.13.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.3.2

- `jaspr` upgraded to `0.13.0`

## 0.3.1

- `jaspr` upgraded to `0.12.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.3.1
version: 0.3.2
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.12.0
jaspr: ^0.13.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.12

- `jaspr` upgraded to `0.13.0`

## 0.3.11

- `jaspr` upgraded to `0.12.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.11
version: 0.3.12
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.12.0
jaspr: ^0.13.0
meta: ^1.9.1
riverpod: ^2.4.8

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 patch
## 0.4.2

- The title of the browser tab will no be properly set to the `title` of the current route.
- Fixed race condition where routes were skipped during static rendering.
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.4.1
version: 0.4.2
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.12.0
jaspr: ^0.13.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.12.0
version: 0.13.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.12.0
jaspr: ^0.13.0
meta: ^1.7.0
test: ^1.22.0

Expand Down

0 comments on commit 1f1816e

Please sign in to comment.