Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
MimirActionsBot committed Jan 12, 2023
1 parent 289dc1d commit 9ae9ed7
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 10 deletions.
19 changes: 19 additions & 0 deletions packages/flutter_mimir/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.0.1-dev.0

- **REFACTOR**: switch macOS and iOS build to use C generation.
- **FIX**: disable macOS App Sandbox.
- **FIX**: force library bundling for macOS/iOS in release mode.
- **FIX**: ensure CMake will use local binaries if present.
- **FIX**: add cache layer of downloads for iOS/macOS.
- **FIX**: add FLUTTER_TARGET_PLATFORM to windows cmake.
- **FIX**: hopefully finished the linux cmake.
- **FIX**: work toward linux ffi support.
- **FIX**: update pubspec.yaml to meet pub.dev guidelines.
- **FIX**: add android ffi support ([#58](https://github.com/GregoryConrad/mimir/issues/58)).
- **FIX**: cocoapod distribution uses GitHub release ([#57](https://github.com/GregoryConrad/mimir/issues/57)).
- **FIX**: cocoapod source distribution ([#56](https://github.com/GregoryConrad/mimir/issues/56)).
- **FIX**: add proper rust support for macOS/iOS ([#44](https://github.com/GregoryConrad/mimir/issues/44)).
- **FEAT**: switch android build over to CMake to enable CI testing.
- **DOCS**: update package description to make pub.dev happy.
- **DOCS**: update the changelog to remove previous commits.

## 0.0.0

- 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.0") # generated; do not edit
set(MimirVersion "mimir-v0.0.1-dev.0") # 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/flutter_mimir/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_mimir: ^0.0.0
flutter_mimir: ^0.0.1-dev.0
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
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.0' # generated; do not edit
release_tag_name = 'mimir-v0.0.1-dev.0' # 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.0") # generated; do not edit
set(MimirVersion "mimir-v0.0.1-dev.0") # 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.0' # generated; do not edit
release_tag_name = 'mimir-v0.0.1-dev.0' # 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 database with
typo-tolerant full-text search and declarative queries.
version: 0.0.0
version: 0.0.1-dev.0
homepage: https://github.com/GregoryConrad/mimir
repository: https://github.com/GregoryConrad/mimir

Expand All @@ -13,7 +13,7 @@ environment:
dependencies:
flutter:
sdk: flutter
mimir: ^0.0.0
mimir: ^0.0.1-dev.0
path: ^1.8.2
path_provider: ^2.0.11

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.0") # generated; do not edit
set(MimirVersion "mimir-v0.0.1-dev.0") # generated; do not edit

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

- **REFACTOR**: switch macOS and iOS build to use C generation.
- **REFACTOR**: auto filter/sortby cleanup.
- **REFACTOR**: refactor to use all_obkv_to_json.
- **REFACTOR**: update rust code with suggestions from clippy.
- **REFACTOR**: remove obkv dependency.
- **REFACTOR**: move generated ffi files to src dir.
- **REFACTOR**: switched over to parking_lot.
- **REFACTOR**: clean up some cargo dependencies.
- **PERF**: remove old macros and improve concurrency support.
- **FIX**: search method contains true optional args.
- **FIX**: switch Rust build script to copy ios gen c files to macos.
- **FIX**: switch to POSIX semaphores for App Sandbox ([#100](https://github.com/GregoryConrad/mimir/issues/100)).
- **FIX**: adding invalid documents throws exception instead of silently failing.
- **FIX**: fix ci build failures by updating frb to 1.53.
- **FIX**: increase the max db size.
- **FIX**: no more autogenerate id & set_documents fix.
- **FIX**: do not fail build on format fail.
- **FIX**: fix dylib path in another test.
- **FIX**: refactored repo to use root Cargo.toml.
- **FIX**: update pubspec.yaml to meet pub.dev guidelines.
- **FIX**: default resultsLimit to u32::MAX.
- **FIX**: add android ffi support ([#58](https://github.com/GregoryConrad/mimir/issues/58)).
- **FIX**: cocoapod source distribution ([#56](https://github.com/GregoryConrad/mimir/issues/56)).
- **FIX**: add proper rust support for macOS/iOS ([#44](https://github.com/GregoryConrad/mimir/issues/44)).
- **FEAT**: add automatic sortable fields.
- **FEAT**: support for migration between milli versions ([#79](https://github.com/GregoryConrad/mimir/issues/79)).
- **FEAT**: added convenience method updateSettings.
- **FEAT**: add automatic filterable fields ([#60](https://github.com/GregoryConrad/mimir/issues/60)).
- **FEAT**: Add filter convenience ([#45](https://github.com/GregoryConrad/mimir/issues/45)).
- **DOCS**: added inline documentation for some ffi types.
- **DOCS**: update package description to make pub.dev happy.
- **DOCS**: update the changelog to remove previous commits.

## 0.0.0

- 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 @@ -13,7 +13,7 @@ dependencies:
collection: ^1.17.0
http: ^0.13.5
# You can replace this with the current version of mimir
mimir: ^0.0.0
mimir: ^0.0.1-dev.0
dev_dependencies:
lints: ^2.0.0
test: ^1.16.0
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 database with
typo-tolerant full-text search and declarative queries.
version: 0.0.0
version: 0.0.1-dev.0
homepage: https://github.com/GregoryConrad/mimir
repository: https://github.com/GregoryConrad/mimir

Expand Down

0 comments on commit 9ae9ed7

Please sign in to comment.