Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Nov 14, 2022
1 parent 08fce35 commit 796e213
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ android {
}

dependencies {
api 'com.github.trycourier:courier-android:1.0.35'
api 'com.github.trycourier:courier-android:1.0.399'
api 'com.google.firebase:firebase-messaging-ktx:23.1.0'
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: courier_flutter
description: The best way to add push notifications to your Flutter app!
version: 0.0.7
version: 1.0.0
homepage: https://courier.com

environment:
Expand Down
9 changes: 8 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ brew install python-yq
PACKAGE_VERSION=$(yq .version pubspec.yaml | tr -d '"')
echo $PACKAGE_VERSION

# Bump the version
git add .
git commit -m "Bump"
git push

# Add the tag
git tag $PACKAGE_VERSION
git push --tags
Expand All @@ -17,4 +22,6 @@ git push --tags
gh release create $PACKAGE_VERSION --generate-notes

# Publish to pub.dev
flutter pub publish
flutter pub publish

echo "You can see the release here: https://pub.dev/packages/courier_flutter"

0 comments on commit 796e213

Please sign in to comment.