From 2130cf2ce99f1fcf3029d9289c2a06e956a1c9ff Mon Sep 17 00:00:00 2001 From: Michael Moore Date: Mon, 15 Apr 2024 20:44:39 -0500 Subject: [PATCH] chore: bump version and update changelog --- CHANGELOG.md | 7 +++++++ generate-changelog.sh | 3 +++ package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- src/renderer/src/lib/constants.ts | 2 +- 6 files changed, 14 insertions(+), 4 deletions(-) create mode 100755 generate-changelog.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 530ce56..929f3ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## [0.10.3](https://github.com/MichaelMakesGames/stellarmaps/compare/stellarmaps-v0.10.2...stellarmaps-v0.10.3) (2024-04-16) + +### Bug Fixes + +- **parser:** increase maximum nested object depth when skipping a value ([2f754e1](https://github.com/MichaelMakesGames/stellarmaps/commit/2f754e129c3387c9a9c5c2b0f1aae22e6f64295c)), closes [#7](https://github.com/MichaelMakesGames/stellarmaps/issues/7) +- **parser:** provide default for value UNKNOWN if name is missing ([cc76cdd](https://github.com/MichaelMakesGames/stellarmaps/commit/cc76cdd97b2483a8893891a8ce7b988d11a3ec18)) + ## [0.10.2](https://github.com/MichaelMakesGames/stellarmaps/compare/stellarmaps-v0.10.1...stellarmaps-v0.10.2) (2024-03-20) ### Bug Fixes diff --git a/generate-changelog.sh b/generate-changelog.sh new file mode 100755 index 0000000..8b52aad --- /dev/null +++ b/generate-changelog.sh @@ -0,0 +1,3 @@ +#!/usr/bin/bash +npx commit-and-tag-version --skip.bump --skip.commit --skip.tag -t stellarmaps-v +npx prettier --write ./CHANGELOG.md \ No newline at end of file diff --git a/package.json b/package.json index 64e8eb5..21bf523 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stellarmaps", - "version": "0.10.2", + "version": "0.10.3", "private": true, "type": "module", "scripts": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 116f5d3..a7a34bd 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellarmaps" -version = "0.10.2" +version = "0.10.3" description = "Stellaris map renderer" authors = ["Michael Moore"] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 47268d9..a7ca79d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "StellarMaps", - "version": "0.10.2" + "version": "0.10.3" }, "tauri": { "allowlist": { diff --git a/src/renderer/src/lib/constants.ts b/src/renderer/src/lib/constants.ts index 834d96b..4d3396a 100644 --- a/src/renderer/src/lib/constants.ts +++ b/src/renderer/src/lib/constants.ts @@ -1 +1 @@ -export const VERSION = '0.10.2'; +export const VERSION = '0.10.3';