Skip to content

Commit

Permalink
chore(flutter_discord_rpc): bump version to v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Jul 14, 2024
1 parent 9c9ff18 commit 2d184b2
Show file tree
Hide file tree
Showing 13 changed files with 74 additions and 19 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,43 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-07-14

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`flutter_discord_rpc` - `v0.1.0`](#flutter_discord_rpc---v010)
- [`metadata_god` - `v0.5.4`](#metadata_god---v054)
- [`smtc_windows` - `v0.1.4`](#smtc_windows---v014)

---

#### `flutter_discord_rpc` - `v0.1.0`

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FIX**(flutter_discord_rpc): use box to rpc connect alive and remove sandbox to allow connecting to discord ipc.
- **FEAT**(flutter_discord_rpc): retry on broken pipe.
- **FEAT**(flutter_discord_rpc): add auto retry connect.
- **FEAT**(flutter_discord_rpc): add complete support.

#### `metadata_god` - `v0.5.4`

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FEAT**(flutter_discord_rpc): add complete support.

#### `smtc_windows` - `v0.1.4`

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FEAT**(flutter_discord_rpc): add complete support.


## 2024-04-22

### Changes
Expand Down
8 changes: 8 additions & 0 deletions packages/flutter_discord_rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.1.0

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FIX**(flutter_discord_rpc): use box to rpc connect alive and remove sandbox to allow connecting to discord ipc.
- **FEAT**(flutter_discord_rpc): retry on broken pipe.
- **FEAT**(flutter_discord_rpc): add auto retry connect.
- **FEAT**(flutter_discord_rpc): add complete support.

## 1.0.0

- Initial version.
2 changes: 1 addition & 1 deletion packages/flutter_discord_rpc/android/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "flutter_discord_rpc-v0.0.1") # generated; do not edit
set(LibraryVersion "flutter_discord_rpc-v0.1.0") # 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'flutter_discord_rpc-v0.0.1' # generated; do not edit
release_tag_name = 'flutter_discord_rpc-v0.1.0' # 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/flutter_discord_rpc/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "flutter_discord_rpc-v0.0.1") # generated; do not edit
set(LibraryVersion "flutter_discord_rpc-v0.1.0") # 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_tag_name = 'flutter_discord_rpc-v0.0.1' # generated; do not edit
release_tag_name = 'flutter_discord_rpc-v0.1.0' # generated; do not edit

# We cannot distribute the XCFramework alongside the library directly,
# so we have to fetch the correct version here.
Expand Down
22 changes: 11 additions & 11 deletions packages/flutter_discord_rpc/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "flutter_discord_rpc"
version = "0.0.1"
edition = "2021"
name = 'flutter_discord_rpc'
version = '0.1.0'
edition = '2021'

[lib]
crate-type = ["staticlib", "cdylib"]
crate-type = ['staticlib', 'cdylib']

[[bin]]
name = "main"
path = "src/main.rs"
name = 'main'
path = 'src/main.rs'

[build-dependencies]
flutter_rust_bridge_codegen = "1.82.*"
flutter_rust_bridge_codegen = '1.82.*'

[dependencies]
anyhow = "1.0.82"
discord-rich-presence = "0.2.4"
flutter_rust_bridge = "1.82.*"
lazy_static = "1.4.0"
anyhow = '1.0.82'
discord-rich-presence = '0.2.4'
flutter_rust_bridge = '1.82.*'
lazy_static = '1.4.0'
2 changes: 1 addition & 1 deletion packages/flutter_discord_rpc/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_discord_rpc
description: A new Flutter FFI plugin project.
version: 0.0.1
version: 0.1.0
homepage: https://github.com/KRTirtho/frb_plugins

environment:
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_discord_rpc/windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(LibraryVersion "flutter_discord_rpc-v0.0.1") # generated; do not edit
set(LibraryVersion "flutter_discord_rpc-v0.1.0") # generated; do not edit

# The Flutter tooling requires that developers have a version of Visual Studio
# installed that includes CMake 3.14 or later. You should not increase this
Expand Down
5 changes: 5 additions & 0 deletions packages/metadata_god/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.5.4

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FEAT**(flutter_discord_rpc): add complete support.

## 0.5.3

- **FEAT**(metadata_god): upgrade lofty and uuid packages.
Expand Down
2 changes: 1 addition & 1 deletion packages/metadata_god/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: metadata_god
description: Plugin for retrieving and writing audio tags/metadata from audio files
version: 0.5.3
version: 0.5.4
repository: https://github.com/KRTirtho/metadata_god/blob/main/packages/metadata_god
homepage: https://github.com/KRTirtho/metadata_god

Expand Down
5 changes: 5 additions & 0 deletions packages/smtc_windows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.4

- **FIX**(flutter_discord_rpc): not working for snap/flatpak discord in linux.
- **FEAT**(flutter_discord_rpc): add complete support.

## 0.1.3

- **FIX**: asset download.
Expand Down
2 changes: 1 addition & 1 deletion packages/smtc_windows/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: smtc_windows
description: Windows `SystemMediaTransportControls` implementation for Flutter giving access to Windows OS Media Control applet.
version: 0.1.3
version: 0.1.4
homepage: https://github.com/KRTirtho/smtc_windows
repository: https://github.com/KRTirtho/smtc_windows/tree/main/packages/smtc_windows

Expand Down

0 comments on commit 2d184b2

Please sign in to comment.