Skip to content

Commit

Permalink
Version 0.2 (#30)
Browse files Browse the repository at this point in the history
* update version tags in `package.json` & `SECURITY.md` & `version_check.py` & `constants.ts`

* add new version tag to `bug_report.yml`

* `CHANGELOG.md` updated

* `SECURITY.md` updated

* `bug_report.yml` updated
  • Loading branch information
F-Shahali authored Sep 15, 2024
1 parent 4a0d6c7 commit 0db4203
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
description: Which version of MyButton are you using?
options:
- MyButton 0.1
- MyButton 0.2
default: 0
validations:
required: true
Expand Down
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,25 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2] - 2024-09-16
### Added
- MyButton Logo
- Support query param for routing
- Handle active page by Redux
### Changed
- Update Redux structure to use `createSlice` instead of `createReducer`
- Navigation structure removed
- Redirect all paths to `/`
- Update loading icon in `LodingCover.tsx`
- Automatically update the share button code by switching between direct & indirect mode

## [0.1] - 2024-07-24
### Added
- `Email` support
- `Gmail` support
- `Telegram` support
- Choose direct or indirect sharing mode

[Unreleased]: https://github.com/openscilab/mybutton/compare/v0.1...dev
[Unreleased]: https://github.com/openscilab/mybutton/compare/v0.2...dev
[0.2]: https://github.com/openscilab/mybutton/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/mybutton/compare/c6df6cc...v0.1
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.1 | :white_check_mark: |
| < 0.1 | :x: |
| 0.2 | :white_check_mark: |
| < 0.2 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
MYBUTTON_VERSION = "0.1"
MYBUTTON_VERSION = "0.2"


CHANGELOG_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mybutton",
"description": "Effortless link sharing across your desired platforms",
"version": "0.1",
"version": "0.2",
"author": "MyButton Development Team",
"license": "MIT",
"homepage": "https://mybutton.click",
Expand Down
2 changes: 1 addition & 1 deletion src/App/Config/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const BaseConfig = {
APP_NAME: 'MyButton',
APP_SHORT_NAME: 'MyBTN',
VERSION: 0.1,
VERSION: 0.2,
};

const LOCAL = {
Expand Down

0 comments on commit 0db4203

Please sign in to comment.