diff --git a/CHANGELOG.md b/CHANGELOG.md index 55f738bd..4d3e36f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.3.10 + +- Episode search + +## 1.3.9 + +- Improved accessibility +- Better support for AirPods and Bluetooth earphones/headphones +- Speed selector max speed now uses 0.1 increments +- Bug Fixes +- Fixed episode sort issue + ## 1.3.8 - Added episode sort option. diff --git a/lib/core/environment.dart b/lib/core/environment.dart index 0d3ddd49..4250aef5 100644 --- a/lib/core/environment.dart +++ b/lib/core/environment.dart @@ -25,8 +25,8 @@ const feedbackUrl = String.fromEnvironment('FEEDBACK_URL', defaultValue: ''); class Environment { static const _applicationName = 'Anytime'; static const _applicationUrl = 'https://github.com/amugofjava/anytime_podcast_player'; - static const _projectVersion = '1.3.9'; - static const _build = '158'; + static const _projectVersion = '1.3.10'; + static const _build = '160'; static var _agentString = userAgentAppString; diff --git a/pubspec.yaml b/pubspec.yaml index 14cae2c1..d423bdee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: anytime description: Anytime Podcast Player -version: 1.3.9+158 +version: 1.3.10+160 environment: sdk: '>=3.2.0 <4.0.0'