Skip to content

Commit

Permalink
chore: changelogs and update version path for native build-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Apr 1, 2023
1 parent 518b46c commit fb8b5d9
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 14 deletions.
11 changes: 3 additions & 8 deletions packages/metadata_god/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
## 0.4.1

- **FIX**: rename Image to Picture to resolve name conflict with material Image.
- **FIX**: export Image type.
- **FIX**: hide internal api getter.
- **FIX**: build file release tag version.

# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
- **FIX**: rename `Image` to `Picture` to resolve name conflict with material Image.
- **FIX**: export `Picture` type.
- **FIX**: hide internal `api` getter.

### [0.4.0](https://github.com/KRTirtho/metadata_god/compare/v0.3.1...v0.4.0) (2023-01-05)

Expand Down
2 changes: 1 addition & 1 deletion packages/metadata_god/android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "v0.4.0") # generated; do not edit
set(LibraryVersion "v0.4.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/metadata_god/ios/metadata_god.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'v0.4.0' # generated; do not edit
release_tag_name = 'v0.4.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/metadata_god/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "v0.4.0") # generated; do not edit
set(LibraryVersion "v0.4.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/metadata_god/macos/metadata_god.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'v0.4.0' # generated; do not edit
release_tag_name = 'v0.4.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/metadata_god/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "metadata_god"
version = "0.4.0"
version = "0.4.1"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion packages/metadata_god/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "v0.4.0") # generated; do not edit
set(LibraryVersion "v0.4.1") # generated; do not edit

# TODO Remove this workaround once Flutter supports Windows ARM.
# https://github.com/flutter/flutter/issues/116196
Expand Down

0 comments on commit fb8b5d9

Please sign in to comment.