Skip to content

Commit f6f615a

Browse files
authored
chore: release 0.1.2 (#2129)
1 parent 17d88f2 commit f6f615a

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,7 @@ jobs:
324324
with:
325325
upload_url: ${{ needs.create-release.outputs.upload_url }}
326326
asset_path: ${{ env.LINUX_APP_RELEASE_PATH }}/${{ env.LINUX_PACKAGE_NAME }}
327+
327328
asset_name: ${{ env.LINUX_PACKAGE_NAME }}
328329
asset_content_type: application/octet-stream
329330

@@ -352,3 +353,12 @@ jobs:
352353
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/appflowy_client:${{ github.ref_name }}
353354
cache-from: type=registry,ref=${{ secrets.DOCKER_HUB_USERNAME }}/af_build_cache:buildcache
354355
cache-to: type=registry,ref=${{ secrets.DOCKER_HUB_USERNAME }}/af_build_cache:buildcache,mode=max
356+
357+
notify-discord:
358+
runs-on: ubuntu-latest
359+
needs: [build-for-linux, build-for-windows, build-for-macOS]
360+
steps:
361+
- name: Notify Discord
362+
run: |
363+
curl -H "Content-Type: application/json" -d '{"username": "release@appflowy", "content": "🎉 AppFlowy ${{ github.ref_name }} is available. https://github.com/LucasXu0/AppFlowy/releases/tag/'${{ github.ref_name }}'"}' "https://discord.com/api/webhooks/${{ secrets.DISCORD }}"
364+
shell: bash

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release Notes
22

3+
## Version 0.1.2 - 03/28/2023
4+
5+
### Bug Fixes
6+
7+
- Fix: update calendar selected range.
8+
- Fix: duplicate view.
9+
310
## Version 0.1.1 - 03/21/2023
411

512
### New features

frontend/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2323
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
2424
CARGO_MAKE_CRATE_NAME = "dart-ffi"
2525
LIB_NAME = "dart_ffi"
26-
CURRENT_APP_VERSION = "0.1.1"
26+
CURRENT_APP_VERSION = "0.1.2"
2727
FLUTTER_DESKTOP_FEATURES = "dart,rev-sqlite"
2828
PRODUCT_NAME = "AppFlowy"
2929
# CRATE_TYPE: https://doc.rust-lang.org/reference/linkage.html

frontend/appflowy_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 1.0.0+1
18+
version: 0.1.2
1919

2020
environment:
2121
sdk: ">=2.18.0 <3.0.0"

0 commit comments

Comments
 (0)