From c098a71348b5f09db74b3cb736ab4f091e65c3fb Mon Sep 17 00:00:00 2001 From: TypicalEgg Date: Tue, 27 Dec 2022 15:43:37 -0800 Subject: [PATCH] Bump version to v1.0.2 --- CHANGELOG.md | 3 +++ android/CMakeLists.txt | 2 +- example/ios/Podfile.lock | 2 +- example/macos/Podfile.lock | 2 +- example/pubspec.lock | 2 +- ios/simple_audio.podspec | 4 ++-- linux/CMakeLists.txt | 2 +- macos/simple_audio.podspec | 4 ++-- pubspec.yaml | 2 +- rust/Cargo.toml | 2 +- windows/CMakeLists.txt | 2 +- 11 files changed, 15 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad1ebb6b..7448979c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.2 +- Build scripts download binaries (for pub.dev) + ## 1.0.1 - Set versions in `pubspec.yaml` - Simplified Linux CMAKE diff --git a/android/CMakeLists.txt b/android/CMakeLists.txt index de134296..33e22850 100644 --- a/android/CMakeLists.txt +++ b/android/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10) # Download the binaries from GitHub. -set(Version "1.0.1") +set(Version "1.0.2") set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/src/main/jniLibs") if(NOT EXISTS "${LibPath}/arm64-v8a/libsimple_audio.so") diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 2297a51b..e9142e20 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -39,7 +39,7 @@ PODS: - SDWebImage (5.13.4): - SDWebImage/Core (= 5.13.4) - SDWebImage/Core (5.13.4) - - simple_audio (1.0.1): + - simple_audio (1.0.2): - Flutter - SwiftyGif (5.4.3) diff --git a/example/macos/Podfile.lock b/example/macos/Podfile.lock index 38e7d6ca..11a29498 100644 --- a/example/macos/Podfile.lock +++ b/example/macos/Podfile.lock @@ -1,6 +1,6 @@ PODS: - FlutterMacOS (1.0.0) - - simple_audio (1.0.1): + - simple_audio (1.0.2): - FlutterMacOS DEPENDENCIES: diff --git a/example/pubspec.lock b/example/pubspec.lock index 0012b9e6..edbf30cf 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -309,7 +309,7 @@ packages: path: ".." relative: true source: path - version: "1.0.1" + version: "1.0.2" sky_engine: dependency: transitive description: flutter diff --git a/ios/simple_audio.podspec b/ios/simple_audio.podspec index 4b6b2c17..b03f9171 100644 --- a/ios/simple_audio.podspec +++ b/ios/simple_audio.podspec @@ -1,5 +1,5 @@ # Download the binaries from GitHub. -version = "1.0.1" +version = "1.0.2" lib_url = "https://github.com/erikas-taroza/simple_audio/blob/v#{version}/ios/Frameworks/simple_audio.xcframework" ` @@ -20,7 +20,7 @@ cd ../.. Pod::Spec.new do |s| s.name = 'simple_audio' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'A cross-platform solution for playing audio in Flutter.' s.description = <<-DESC A cross-platform solution for playing audio in Flutter. diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index 0f00f13e..98d74fdb 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -39,7 +39,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE flutter) target_link_libraries(${PLUGIN_NAME} PRIVATE PkgConfig::GTK) # Download the binary from GitHub. -set(Version "1.0.1") +set(Version "1.0.2") set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/libsimple_audio.so") if(NOT EXISTS ${LibPath}) file(DOWNLOAD diff --git a/macos/simple_audio.podspec b/macos/simple_audio.podspec index 0f1da863..65adf553 100644 --- a/macos/simple_audio.podspec +++ b/macos/simple_audio.podspec @@ -1,5 +1,5 @@ # Download the binary from GitHub. -version = "1.0.1" +version = "1.0.2" lib_url = "https://github.com/erikas-taroza/simple_audio/blob/v#{version}/macos/Libs/libsimple_audio.a?raw=true" ` @@ -14,7 +14,7 @@ cd .. Pod::Spec.new do |s| s.name = 'simple_audio' - s.version = '1.0.1' + s.version = '1.0.2' s.summary = 'A cross-platform solution for playing audio in Flutter.' s.description = <<-DESC A cross-platform solution for playing audio in Flutter. diff --git a/pubspec.yaml b/pubspec.yaml index 11bb14da..9d4671cb 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: simple_audio description: A cross-platform solution for playing audio in Flutter. -version: 1.0.1 +version: 1.0.2 homepage: https://github.com/erikas-taroza/simple_audio repository: https://github.com/erikas-taroza/simple_audio diff --git a/rust/Cargo.toml b/rust/Cargo.toml index e34a9d2e..44bf8bc4 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple_audio" -version = "1.0.1" +version = "1.0.2" edition = "2021" [lib] diff --git a/windows/CMakeLists.txt b/windows/CMakeLists.txt index 15ef8f38..f8c5db82 100644 --- a/windows/CMakeLists.txt +++ b/windows/CMakeLists.txt @@ -45,7 +45,7 @@ target_include_directories(${PLUGIN_NAME} INTERFACE target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin) # Download the binary from GitHub. -set(Version "1.0.1") +set(Version "1.0.2") set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/simple_audio.dll") if(NOT EXISTS ${LibPath}) file(DOWNLOAD