diff --git a/CHANGELOG.md b/CHANGELOG.md index 86d1b50..6171573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog -## [HEAD](https://github.com/neogeek/onlybuild/tree/HEAD) - (2024-04-26) +## [v1.2.0](https://github.com/neogeek/onlybuild/tree/v1.2.0) - (2024-05-07) -[Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.1.0...HEAD) +[Full Changelog](https://github.com/neogeek/onlybuild/compare/v1.1.0...v1.2.0) +- [feat] Added .env support. [#10](https://github.com/neogeek/onlybuild/pull/10) +- [hotfix] Added a prepare build target. [#9](https://github.com/neogeek/onlybuild/pull/9) +- [hotfix] Fix permissions on bin file after build. [#8](https://github.com/neogeek/onlybuild/pull/8) +- [feat] Converted project to typescript. [#7](https://github.com/neogeek/onlybuild/pull/7) +- [hotfix] Updated packages. [#6](https://github.com/neogeek/onlybuild/pull/6) - [hotfix] Disable gitignore in globby. [#3](https://github.com/neogeek/onlybuild/pull/3) ## [v1.1.0](https://github.com/neogeek/onlybuild/tree/v1.1.0) - (2024-04-26) diff --git a/package-lock.json b/package-lock.json index 7ff6d53..54d4153 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "onlybuild", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "onlybuild", - "version": "1.1.0", + "version": "1.2.0", "license": "MIT", "dependencies": { "dotenv": "16.4.5", diff --git a/package.json b/package.json index d2b6220..b27f2dd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "onlybuild", "description": "A zero-config cli for building static websites.", - "version": "1.1.0", + "version": "1.2.0", "engines": { "node": ">=20.x" },