Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
brookman committed Oct 1, 2024
1 parent e8057b8 commit 4b5c477
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 10 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-10-01

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`rusty_chacha_dart` - `v0.6.1`](#rusty_chacha_dart---v061)
- [`rusty_chacha` - `v0.5.1+1`](#rusty_chacha---v0511)

Packages with dependency updates only:

> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
- `rusty_chacha` - `v0.5.1+1`

---

#### `rusty_chacha_dart` - `v0.6.1`

- **FEAT**: update depencency. ([b9302d75](https://github.com/brookman/rusty_chacha/commit/b9302d75fe627764a6e7c472d2f516e889a801f7))


## 2024-07-09

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

- Update a dependency to the latest release.

## 0.5.1

- **FEAT**: add dart example. ([36f07d94](https://github.com/brookman/rusty_chacha/commit/36f07d94486311ff7ebd9afdf41a3c0444dcc3f8))
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(rustyChachaVersion "rusty_chacha-v0.6.0") # generated; do not edit
set(rustyChachaVersion "rusty_chacha-v0.6.1") # generated; do not edit

# Unlike the Windows & Linux CMakeLists.txt, this Android equivalent is just here
# to download the Android binaries into src/main/jniLibs/ and does not build anything.
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:
dependencies:
flutter:
sdk: flutter
rusty_chacha: ^0.5.1
rusty_chacha: ^0.5.1+1

# For local testing
#dependency_overrides:
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/ios/rusty_chacha.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'rusty_chacha-v0.6.0' # generated; do not edit
release_tag_name = 'rusty_chacha-v0.6.1' # generated; do not edit

# We cannot distribute the XCFramework alongside the library directly,
# so we have to fetch the correct version here.
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(rustyChachaVersion "rusty_chacha-v0.6.0") # generated; do not edit
set(rustyChachaVersion "rusty_chacha-v0.6.1") # generated; do not edit

# The Flutter tooling requires that developers have CMake 3.10 or later
# installed. You should not increase this version, as doing so will cause
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/macos/rusty_chacha.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'rusty_chacha-v0.6.0' # generated; do not edit
release_tag_name = 'rusty_chacha-v0.6.1' # generated; do not edit

# We cannot distribute the XCFramework alongside the library directly,
# so we have to fetch the correct version here.
Expand Down
4 changes: 2 additions & 2 deletions packages/rusty_chacha/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: rusty_chacha
description: >
A Flutter library for fast ChaCha20-Poly1305 encryption, powered by Rust
version: 0.5.1
version: 0.5.1+1
homepage: https://github.com/brookman/rusty_chacha
repository: https://github.com/brookman/rusty_chacha
issue_tracker: https://github.com/brookman/rusty_chacha/issues
Expand All @@ -13,7 +13,7 @@ environment:
dependencies:
flutter:
sdk: flutter
rusty_chacha_dart: ^0.6.0
rusty_chacha_dart: ^0.6.1

dev_dependencies:
flutter_test:
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(rustyChachaVersion "rusty_chacha-v0.6.0") # generated; do not edit
set(rustyChachaVersion "rusty_chacha-v0.6.1") # generated; do not edit

# TODO Remove this workaround once Flutter supports Windows ARM.
# https://github.com/flutter/flutter/issues/116196
Expand Down
4 changes: 4 additions & 0 deletions packages/rusty_chacha_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.1

- **FEAT**: update depencency. ([b9302d75](https://github.com/brookman/rusty_chacha/commit/b9302d75fe627764a6e7c472d2f516e889a801f7))

## 0.6.0

> Note: This release has breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/rusty_chacha_dart/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ environment:
sdk: ^3.0.0

dependencies:
rusty_chacha_dart: ^0.6.0
rusty_chacha_dart: ^0.6.1

2 changes: 1 addition & 1 deletion packages/rusty_chacha_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: rusty_chacha_dart
description: >
A Flutter library for fast ChaCha20-Poly1305 encryption, powered by Rust
version: 0.6.0
version: 0.6.1
homepage: https://github.com/brookman/rusty_chacha
repository: https://github.com/brookman/rusty_chacha
issue_tracker: https://github.com/brookman/rusty_chacha/issues
Expand Down

0 comments on commit 4b5c477

Please sign in to comment.