Skip to content

Commit

Permalink
Bump version to v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikas-taroza committed Nov 7, 2023
1 parent 98009e6 commit 2c52d65
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.9.0

- Improved gapless playback
- The preloaded file is automatically played when the current file is done playing.
- `clearPreload()` removes the preloaded file so that it doesn't automatically play.
- `PreloadPlayed` playback state which is sent after the preload was automatically played.

## 1.8.0

- Add `stop` event (thanks @dannyglover)
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.8.0")
set(Version "1.9.0")
set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/src/main/jniLibs")
set(ArchivePath "${CMAKE_CURRENT_SOURCE_DIR}/android.tar.gz")

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.8.0"
version = "1.9.0"
lib_url = "https://github.com/erikas-taroza/simple_audio/releases/download/v#{version}/ios.zip"

`
Expand All @@ -15,7 +15,7 @@ cd ..

Pod::Spec.new do |s|
s.name = 'simple_audio'
s.version = '1.8.0'
s.version = '1.9.0'
s.summary = 'A simple cross-platform solution for playing audio in Flutter.'
s.description = <<-DESC
A simple 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.8.0")
set(Version "1.9.0")
set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/linux.tar.gz")
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.8.0"
version = "1.9.0"
lib_url = "https://github.com/erikas-taroza/simple_audio/releases/download/v#{version}/macos.zip"

`
Expand All @@ -15,7 +15,7 @@ cd ..

Pod::Spec.new do |s|
s.name = 'simple_audio'
s.version = '1.8.0'
s.version = '1.9.0'
s.summary = 'A simple cross-platform solution for playing audio in Flutter.'
s.description = <<-DESC
A simple 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 simple cross-platform solution for playing audio in Flutter.
version: 1.8.0
version: 1.9.0
homepage: https://github.com/erikas-taroza/simple_audio
repository: https://github.com/erikas-taroza/simple_audio
topics:
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.8.0"
version = "1.9.0"
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.8.0")
set(Version "1.9.0")
set(LibPath "${CMAKE_CURRENT_SOURCE_DIR}/windows.tar.gz")
if(NOT EXISTS ${LibPath})
file(DOWNLOAD
Expand Down

0 comments on commit 2c52d65

Please sign in to comment.