Skip to content

Commit f6c244b

Browse files
committed
Update changelog and version
1 parent e3f954f commit f6c244b

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ jobs:
134134
# if: startsWith(github.ref, 'refs/tags/')
135135
with:
136136
name: ExCode
137-
tag_name: v0.5.1
138-
prerelease: true
137+
tag_name: v1.0.0
138+
prerelease: false
139139
generate_release_notes: true
140140
files: |
141141
exec/android/bundle/release/app-release.aab

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
For currently known issues, check the [GitHub issues tab](https://github.com/dhzdhd/ExCode/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
55

6+
## 1.0.0 | 22-01-2023
7+
8+
### Fixes / Improvements
9+
10+
- Fix CORS issues on custom pastebin
11+
- Improve custom pastebin UI
12+
- Some QOL improvements
13+
614
## 0.5.1 | 17-01-2023
715

816
### Additions

lib/src/home/widgets/app_bar.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ class AppBarWidget extends HookConsumerWidget with PreferredSizeWidget {
130130
(l) => context.showErrorSnackBar(l),
131131
(r) => context.showSuccessSnackBar(
132132
content:
133-
'Uploaded to hastebin. The url expires after a few days!',
133+
'Uploaded to pastebin. The url expires after a few days!',
134134
action: Some(
135135
SnackBarAction(
136136
label: 'Copy',
137137
onPressed: () =>
138138
FlutterClipboard.copy(r).then((value) {
139139
context.showSuccessSnackBar(
140-
content: 'Copied hastebin url to clipboard',
140+
content: 'Copied pastebin url to clipboard',
141141
action: const None(),
142142
);
143143
}),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages.
33

44
publish_to: 'none'
55

6-
version: 0.5.1
6+
version: 1.0.0
77

88
environment:
99
sdk: ">=2.17.0 <3.0.0"

0 commit comments

Comments
 (0)