Compare commits
2 commits
3f316e18e7
...
7d10842005
Author | SHA1 | Date | |
---|---|---|---|
|
7d10842005 | ||
|
25ab08b982 |
4 changed files with 12 additions and 4 deletions
|
@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.5.0] - 2023-09-29
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- If the browser uses a dark theme, the default theme is also set to dark
|
- If the browser uses a dark theme, the default theme is also set to dark
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "sake-app",
|
"name": "sake-app",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "sake-app",
|
"name": "sake-app",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"license": "(MIT OR Apache-2.0)",
|
"license": "(MIT OR Apache-2.0)",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/hashes": "^1.3.1",
|
"@noble/hashes": "^1.3.1",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sake-app",
|
"name": "sake-app",
|
||||||
"version": "0.4.0",
|
"version": "0.5.0",
|
||||||
"author": "Rodolphe Bréard <rodolphe@what.tf>",
|
"author": "Rodolphe Bréard <rodolphe@what.tf>",
|
||||||
"license": "(MIT OR Apache-2.0)",
|
"license": "(MIT OR Apache-2.0)",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|
|
@ -27,6 +27,13 @@ update_app_version()
|
||||||
jq ".version = \"${new_version}\"" "package.json" >"${tmp_file}"
|
jq ".version = \"${new_version}\"" "package.json" >"${tmp_file}"
|
||||||
mv "${tmp_file}" "package.json"
|
mv "${tmp_file}" "package.json"
|
||||||
sed -i "s/## \[Unreleased\]/## \[${new_version}\] - ${current_date}/" "CHANGELOG.md"
|
sed -i "s/## \[Unreleased\]/## \[${new_version}\] - ${current_date}/" "CHANGELOG.md"
|
||||||
|
update_dependencies
|
||||||
|
}
|
||||||
|
|
||||||
|
update_dependencies()
|
||||||
|
{
|
||||||
|
npm update
|
||||||
|
npm outdated
|
||||||
}
|
}
|
||||||
|
|
||||||
check_working_directory()
|
check_working_directory()
|
||||||
|
@ -105,6 +112,7 @@ main()
|
||||||
local new_version
|
local new_version
|
||||||
local confirm_release
|
local confirm_release
|
||||||
|
|
||||||
|
update_dependencies
|
||||||
check_working_directory
|
check_working_directory
|
||||||
|
|
||||||
display_app_version
|
display_app_version
|
||||||
|
|
Loading…
Reference in a new issue