From 5b61992bc494360049ef1a06de53eb236620e15d Mon Sep 17 00:00:00 2001 From: siepra Date: Wed, 17 Jan 2024 15:01:09 +0100 Subject: [PATCH] Update packages CHANGELOG.md --- packages/desktop/CHANGELOG.md | 17 ----------------- packages/mobile/CHANGELOG.md | 17 ----------------- remtags.sh | 8 ++++++++ 3 files changed, 8 insertions(+), 34 deletions(-) create mode 100755 remtags.sh diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index 0d4adae1b6..75f5a4c144 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -1,20 +1,3 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - -## [2.0.1-alpha.0](https://github.com/TryQuiet/quiet/compare/@quiet/desktop@2.0.1...@quiet/desktop@2.0.1-alpha.0) (2024-01-17) - - -### Reverts - -* Revert "Publish" ([5a96eab](https://github.com/TryQuiet/quiet/commit/5a96eab6aabb3efdcf0c8f32428a106d40c0f186)) -* Revert "Update packages CHANGELOG.md" ([60edd5f](https://github.com/TryQuiet/quiet/commit/60edd5f509914427bd8fc6e3fc3138adada13eda)) - - - - - [2.0.1] # Fixes: diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index 4e22edeabd..75f5a4c144 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,20 +1,3 @@ -# Change Log - -All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - -## [2.0.1-alpha.0](https://github.com/TryQuiet/quiet/compare/@quiet/mobile@2.0.1...@quiet/mobile@2.0.1-alpha.0) (2024-01-17) - - -### Reverts - -* Revert "Publish" ([5a96eab](https://github.com/TryQuiet/quiet/commit/5a96eab6aabb3efdcf0c8f32428a106d40c0f186)) -* Revert "Update packages CHANGELOG.md" ([60edd5f](https://github.com/TryQuiet/quiet/commit/60edd5f509914427bd8fc6e3fc3138adada13eda)) - - - - - [2.0.1] # Fixes: diff --git a/remtags.sh b/remtags.sh new file mode 100755 index 0000000000..b9c4c71505 --- /dev/null +++ b/remtags.sh @@ -0,0 +1,8 @@ +# Get all tags containing a specific string +TAGS=$(git tag -l 'mobile@2.0.3-alpha*') + +# Delete all matching tags +for tag in $TAGS; do + git tag -d $tag + git push origin :refs/tags/$tag +done \ No newline at end of file