Skip to content

Commit

Permalink
Update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
dhzdhd committed Jan 22, 2023
1 parent e3f954f commit f6c244b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ jobs:
# if: startsWith(github.ref, 'refs/tags/')
with:
name: ExCode
tag_name: v0.5.1
prerelease: true
tag_name: v1.0.0
prerelease: false
generate_release_notes: true
files: |
exec/android/bundle/release/app-release.aab
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
For currently known issues, check the [GitHub issues tab](https://github.com/dhzdhd/ExCode/issues?q=is%3Aopen+is%3Aissue+label%3Abug)

## 1.0.0 | 22-01-2023

### Fixes / Improvements

- Fix CORS issues on custom pastebin
- Improve custom pastebin UI
- Some QOL improvements

## 0.5.1 | 17-01-2023

### Additions
Expand Down
4 changes: 2 additions & 2 deletions lib/src/home/widgets/app_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ class AppBarWidget extends HookConsumerWidget with PreferredSizeWidget {
(l) => context.showErrorSnackBar(l),
(r) => context.showSuccessSnackBar(
content:
'Uploaded to hastebin. The url expires after a few days!',
'Uploaded to pastebin. The url expires after a few days!',
action: Some(
SnackBarAction(
label: 'Copy',
onPressed: () =>
FlutterClipboard.copy(r).then((value) {
context.showSuccessSnackBar(
content: 'Copied hastebin url to clipboard',
content: 'Copied pastebin url to clipboard',
action: const None(),
);
}),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages.

publish_to: 'none'

version: 0.5.1
version: 1.0.0

environment:
sdk: ">=2.17.0 <3.0.0"
Expand Down

0 comments on commit f6c244b

Please sign in to comment.