Compare commits
No commits in common. "7d10842005466b2658b2eed01e664b539e5f7071" and "3f316e18e7bc2ffd76c7a8dd68b79a280075b80d" have entirely different histories.
7d10842005
...
3f316e18e7
4 changed files with 4 additions and 12 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).
|
||||
|
||||
|
||||
## [0.5.0] - 2023-09-29
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- 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",
|
||||
"version": "0.5.0",
|
||||
"version": "0.4.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "sake-app",
|
||||
"version": "0.5.0",
|
||||
"version": "0.4.0",
|
||||
"license": "(MIT OR Apache-2.0)",
|
||||
"dependencies": {
|
||||
"@noble/hashes": "^1.3.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "sake-app",
|
||||
"version": "0.5.0",
|
||||
"version": "0.4.0",
|
||||
"author": "Rodolphe Bréard <rodolphe@what.tf>",
|
||||
"license": "(MIT OR Apache-2.0)",
|
||||
"private": true,
|
||||
|
|
|
@ -27,13 +27,6 @@ update_app_version()
|
|||
jq ".version = \"${new_version}\"" "package.json" >"${tmp_file}"
|
||||
mv "${tmp_file}" "package.json"
|
||||
sed -i "s/## \[Unreleased\]/## \[${new_version}\] - ${current_date}/" "CHANGELOG.md"
|
||||
update_dependencies
|
||||
}
|
||||
|
||||
update_dependencies()
|
||||
{
|
||||
npm update
|
||||
npm outdated
|
||||
}
|
||||
|
||||
check_working_directory()
|
||||
|
@ -112,7 +105,6 @@ main()
|
|||
local new_version
|
||||
local confirm_release
|
||||
|
||||
update_dependencies
|
||||
check_working_directory
|
||||
|
||||
display_app_version
|
||||
|
|
Loading…
Reference in a new issue