diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3a353..dddf427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +## [0.7.0](https://github.com/usenotex/notex/compare/v0.6.0...v0.7.0) (2025-11-16) + +### 🚀 New Features +- Can now collapse/expand notes ([#65](https://github.com/usenotex/notex/pull/65)) + +### 🐛 Bug Fixes +- Fix issue showing placeholder text ([ae981a7](https://github.com/usenotex/notex/commit/ae981a7)) +- Showing the wrong app version in the settings modal ([943d024](https://github.com/usenotex/notex/commit/943d024)) +- Update TAG_REGEX to ensure it captures tags starting with a letter ([1154ca8](https://github.com/usenotex/notex/commit/1154ca8)) +- Fix create note textbox height ([b639b27](https://github.com/usenotex/notex/commit/b639b27)) +- Fix some scrolling issues ([1d9ae2c](https://github.com/usenotex/notex/commit/1d9ae2c)) +- Fix issue where tags are getting cut off when using hypens ([#67](https://github.com/usenotex/notex/pull/67)) +- Fix showing vertical scrollbar in the notes list ([#64](https://github.com/usenotex/notex/pull/64)) + +### 🏠 Chores +- Cycle between only light and dark theme instead of 3 modes ([f4d671a](https://github.com/usenotex/notex/commit/f4d671a)) +- Improve edit view ([#62](https://github.com/usenotex/notex/pull/62)) + +### 🎨 Styles +- Fix issue with code block border ([6f1bbf9](https://github.com/usenotex/notex/commit/6f1bbf9)) +- Made improvements to light and dark theme ([#68](https://github.com/usenotex/notex/pull/68)) +- Make the tags smaller ([83f73a4](https://github.com/usenotex/notex/commit/83f73a4)) +- Improve the button styles ([#66](https://github.com/usenotex/notex/pull/66)) + +### ♻️ Refactors +- Use Vue scoped styles instead of Tailwind ([#59](https://github.com/usenotex/notex/pull/59)) + +### 🤖 Automation +- Check code formatting using prettier ([#61](https://github.com/usenotex/notex/pull/61)) +- Added linting using oxlint ([#60](https://github.com/usenotex/notex/pull/60)) + + ## [0.6.0](https://github.com/cadamsdev/notes/compare/v0.5.0...v0.6.0) (2025-11-13) ### ⚠️ Breaking Changes diff --git a/desktop/package.json b/desktop/package.json index b87a7d0..9aa0599 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,7 +1,7 @@ { "name": "desktop", "private": true, - "version": "0.6.0", + "version": "0.7.0", "type": "module", "scripts": { "dev": "vite", diff --git a/package.json b/package.json index 2c94f7a..ebbf339 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "notex", - "version": "0.6.0", + "version": "0.7.0", "private": true, "description": "", "main": "index.js",