Skip to content

Commit

Permalink
Bump version to v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
erikas-taroza committed Dec 27, 2022
1 parent 99cad7f commit c098a71
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion example/macos/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- FlutterMacOS (1.0.0)
- simple_audio (1.0.1):
- simple_audio (1.0.2):
- FlutterMacOS

DEPENDENCIES:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.1"
version: "1.0.2"
sky_engine:
dependency: transitive
description: flutter
Expand Down
4 changes: 2 additions & 2 deletions ios/simple_audio.podspec
Original file line number Diff line number Diff line change
@@ -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"

`
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions macos/simple_audio.podspec
Original file line number Diff line number Diff line change
@@ -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"

`
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple_audio"
version = "1.0.1"
version = "1.0.2"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion windows/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c098a71

Please sign in to comment.