From b96878b6b16d1da38f56071447cf19e09b011a8e Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sun, 25 Aug 2024 16:02:46 +0200 Subject: [PATCH] release: 1.0.0 --- CHANGELOG.md | 13 +++++++++++++ backend/package-lock.json | 4 ++-- backend/package.json | 2 +- frontend/package-lock.json | 4 ++-- frontend/package.json | 2 +- package-lock.json | 4 ++-- package.json | 4 ++-- 7 files changed, 23 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 442e6c0..400972c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [1.0.0](https://github.com/stonith404/pingvin-share/compare/v0.29.0...v1.0.0) (2024-08-25) + + +### Features + +* **ldap:** Adding support for LDAP authentication ([#554](https://github.com/stonith404/pingvin-share/issues/554)) ([4186a76](https://github.com/stonith404/pingvin-share/commit/4186a768b310855282bc4876d1f294700963b8f5)) + + +### Bug Fixes + +* get started button on home page not working when sign-up is disabled ([4924f76](https://github.com/stonith404/pingvin-share/commit/4924f763947c9a6b79ba0d85887f104ed9545c78)) +* internal server error if user has no password when trying to sign in ([9c381a2](https://github.com/stonith404/pingvin-share/commit/9c381a2ed6b3b7dfd95d4278889b937ffb85e01b)) + ## [0.29.0](https://github.com/stonith404/pingvin-share/compare/v0.28.0...v0.29.0) (2024-07-30) diff --git a/backend/package-lock.json b/backend/package-lock.json index 8fa0aaa..5bf2ccd 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share-backend", - "version": "0.29.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pingvin-share-backend", - "version": "0.29.0", + "version": "1.0.0", "dependencies": { "@nestjs/cache-manager": "^2.2.2", "@nestjs/common": "^10.3.9", diff --git a/backend/package.json b/backend/package.json index 3fbfb96..d9667d2 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "pingvin-share-backend", - "version": "0.29.0", + "version": "1.0.0", "scripts": { "build": "nest build", "dev": "cross-env NODE_ENV=development nest start --watch", diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d9be754..4a4d4dc 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share-frontend", - "version": "0.29.0", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "pingvin-share-frontend", - "version": "0.29.0", + "version": "1.0.0", "dependencies": { "@emotion/react": "^11.11.4", "@emotion/server": "^11.11.0", diff --git a/frontend/package.json b/frontend/package.json index 15834a1..facffb4 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "pingvin-share-frontend", - "version": "0.29.0", + "version": "1.0.0", "scripts": { "dev": "next dev", "build": "next build", diff --git a/package-lock.json b/package-lock.json index 1884b78..1107930 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share", - "version": "0.29.0", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pingvin-share", - "version": "0.29.0", + "version": "1.0.0", "devDependencies": { "conventional-changelog-cli": "^3.0.0" } diff --git a/package.json b/package.json index 9ad6dfd..5ad0e5b 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "pingvin-share", - "version": "0.29.0", + "version": "1.0.0", "scripts": { "format": "cd frontend && npm run format && cd ../backend && npm run format", "lint": "cd frontend && npm run lint && cd ../backend && npm run lint", "version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md", "release:patch": "cd backend && npm version patch --commit-hooks false && cd ../frontend && npm version patch --commit-hooks false && cd .. && git add . && npm version patch --force -m 'release: %s' && git push && git push --tags", - "release:minor": "cd backend && npm version minor --commit-hooks false && cd ../frontend && npm version minor --commit-hooks false && cd .. && git add . && npm version minor --force -m 'release: %s' && git push && git push --tags", + "release:major": "cd backend && npm version major --commit-hooks false && cd ../frontend && npm version major --commit-hooks false && cd .. && git add . && npm version major --force -m 'release: %s' && git push && git push --tags", "deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ." }, "devDependencies": {