Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
 - flutter_mimir@0.0.2+1
 - mimir@0.0.2+1
  • Loading branch information
MimirActionsBot committed Dec 4, 2023
1 parent f944d33 commit 95892d0
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 11 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2023-12-04

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_mimir` - `v0.0.2+1`](#flutter_mimir---v0021)
- [`mimir` - `v0.0.2+1`](#mimir---v0021)

---

#### `flutter_mimir` - `v0.0.2+1`

- **DOCS**: update example app with new widget name. ([7b560db3](https://github.com/GregoryConrad/mimir/commit/7b560db34eeb8559115dc222995faca02341debc))

#### `mimir` - `v0.0.2+1`

- **FIX**: update const strings for Rust 1.74. ([872034b0](https://github.com/GregoryConrad/mimir/commit/872034b05dce0a186665abdde7da3bad61fded3c))
- **FIX**: update exceptions for FRB 1.82. ([42ec2a7c](https://github.com/GregoryConrad/mimir/commit/42ec2a7cc36bae23ff4fbad88498c241644dc8f2))


## 2023-07-13

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

- **DOCS**: update example app with new widget name. ([7b560db3](https://github.com/GregoryConrad/mimir/commit/7b560db34eeb8559115dc222995faca02341debc))

## 0.0.2

- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_mimir/android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(MimirVersion "mimir-v0.0.2") # generated; do not edit
set(MimirVersion "mimir-v0.0.2+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
4 changes: 2 additions & 2 deletions packages/flutter_mimir/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_mimir: ^0.0.2
flutter_mimir: ^0.0.2+1
flutter_rearch: ^1.0.0-dev.0
mimir: ^0.0.2
mimir: ^0.0.2+1
rearch: ^1.0.0-dev.0

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_mimir/ios/flutter_mimir.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'mimir-v0.0.2' # generated; do not edit
release_tag_name = 'mimir-v0.0.2+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/flutter_mimir/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(MimirVersion "mimir-v0.0.2") # generated; do not edit
set(MimirVersion "mimir-v0.0.2+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/flutter_mimir/macos/flutter_mimir.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'mimir-v0.0.2' # generated; do not edit
release_tag_name = 'mimir-v0.0.2+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/flutter_mimir/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_mimir
description: >
Extremely powerful, reactive NoSQL database with
typo-tolerant full-text search and declarative queries.
version: 0.0.2
version: 0.0.2+1
homepage: https://github.com/GregoryConrad/mimir
repository: https://github.com/GregoryConrad/mimir
issue_tracker: https://github.com/GregoryConrad/mimir/issues
Expand All @@ -15,7 +15,7 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.9.1
mimir: ^0.0.2
mimir: ^0.0.2+1
path: ^1.8.3
path_provider: ^2.0.15

Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_mimir/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(MimirVersion "mimir-v0.0.2") # generated; do not edit
set(MimirVersion "mimir-v0.0.2+1") # generated; do not edit

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

- **FIX**: update const strings for Rust 1.74. ([872034b0](https://github.com/GregoryConrad/mimir/commit/872034b05dce0a186665abdde7da3bad61fded3c))
- **FIX**: update exceptions for FRB 1.82. ([42ec2a7c](https://github.com/GregoryConrad/mimir/commit/42ec2a7cc36bae23ff4fbad88498c241644dc8f2))

## 0.0.2

- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
http: ^1.0.0

# You can replace this with the current version of mimir
mimir: ^0.0.2
mimir: ^0.0.2+1

dev_dependencies:
lints: ^3.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: mimir
description: >
Extremely powerful, reactive NoSQL database with
typo-tolerant full-text search and declarative queries.
version: 0.0.2
version: 0.0.2+1
homepage: https://github.com/GregoryConrad/mimir
repository: https://github.com/GregoryConrad/mimir
issue_tracker: https://github.com/GregoryConrad/mimir/issues
Expand Down

0 comments on commit 95892d0

Please sign in to comment.