Skip to content

Commit

Permalink
build: prep flutter -dev.2 to pickup validation changes (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmccartney authored Feb 3, 2024
1 parent 130e96b commit ef5140d
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/bindings_flutter_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ name: release bindings_flutter
on:
workflow_dispatch:
env:
RELEASE_VERSION: '0.1.0-development.1'
RELEASE_VERSION: '0.1.0-development.2'
# this ^ version should be kept in sync:
# - pubspec.yaml
# - linux/CMakeLists.txt
# - android/gradle.properties
# - ios/xmtp_bindings_flutter.podspec
# - macos/xmtp_bindings_flutter.podspec
# TODO: automate that ^ and then also `dart pub publish` on release
# TODO: `dart pub publish` in this workflow after creating the release
defaults:
run:
working-directory: ./bindings_flutter
Expand Down
3 changes: 3 additions & 0 deletions bindings_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.0-development.2
- pickup latest validation service updates

## 0.1.0-development.1
- move from v2 to main branch on libxmtp
- mls client creation
Expand Down
1 change: 1 addition & 0 deletions bindings_flutter/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings_flutter/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
xmtp_bindings_flutter_version=0.1.0-development.1
xmtp_bindings_flutter_version=0.1.0-development.2
# These versions should be kept in sync:
# - pubspec.yaml
# - android/gradle.properties
Expand Down
2 changes: 1 addition & 1 deletion bindings_flutter/ios/xmtp_bindings_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# See generally
# https://cjycode.com/flutter_rust_bridge/library/platform_setup/ios_and_macos.html

release_version = '0.1.0-development.1'
release_version = '0.1.0-development.2'
# These versions should be kept in sync:
# - pubspec.yaml
# - android/gradle.properties
Expand Down
2 changes: 1 addition & 1 deletion bindings_flutter/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)

# TODO: set this externally as part of invoking linux build
set(LibraryName "xmtp_bindings_flutter")
set(ReleaseVersion "0.1.0-development.1")
set(ReleaseVersion "0.1.0-development.2")

# Download the binaries if they are not already present.
project("${LibraryName}")
Expand Down
2 changes: 1 addition & 1 deletion bindings_flutter/macos/xmtp_bindings_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# See generally
# https://cjycode.com/flutter_rust_bridge/library/platform_setup/ios_and_macos.html

release_version = '0.1.0-development.1'
release_version = '0.1.0-development.2'
# These versions should be kept in sync:
# - pubspec.yaml
# - android/gradle.properties
Expand Down
2 changes: 1 addition & 1 deletion bindings_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: xmtp_bindings_flutter
description: low-level flutter bindings to libxmtp
repository: https://github.com/xmtp/libxmtp
version: 0.1.0-development.1
version: 0.1.0-development.2
# When this is updated it should be mirrored in
# android/build.gradle
# ios/xmtp_bindings_flutter.podspec
Expand Down

0 comments on commit ef5140d

Please sign in to comment.