Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖(minor) release version 1.4.0 #483

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [1.4.0] - 2024-10-23

### Added

- ✨(frontend) add tabs inside #466
Expand Down Expand Up @@ -116,7 +118,8 @@ and this project adheres to
- ✨(domains) create and manage domains on admin + API
- ✨(domains) mailbox creation + link to email provisioning API

[unreleased]: https://github.com/numerique-gouv/people/compare/v1.3.1...main
[unreleased]: https://github.com/numerique-gouv/people/compare/v1.4.0...main
[1.4.0]: https://github.com/numerique-gouv/people/releases/v1.4.0
[1.3.1]: https://github.com/numerique-gouv/people/releases/v1.3.1
[1.3.0]: https://github.com/numerique-gouv/people/releases/v1.3.0
[1.2.1]: https://github.com/numerique-gouv/people/releases/v1.2.1
Expand Down
2 changes: 1 addition & 1 deletion src/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "people"
version = "1.3.1"
version = "1.4.0"
authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/apps/desk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-desk",
"version": "1.3.1",
"version": "1.4.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/apps/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app-e2e",
"version": "1.3.1",
"version": "1.4.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "people",
"version": "1.3.1",
"version": "1.4.0",
"private": true,
"workspaces": {
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/eslint-config-people/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-people",
"version": "1.3.1",
"version": "1.4.0",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js ."
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/packages/i18n/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "packages-i18n",
"version": "1.3.1",
"version": "1.4.0",
"private": true,
"scripts": {
"extract-translation": "yarn extract-translation:desk",
Expand Down
4 changes: 2 additions & 2 deletions src/helm/env.d/preprod/values.desk.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: lasuite/people-backend
pullPolicy: Always
tag: "v1.3.1"
tag: "v1.4.0"

backend:
migrateJobAnnotations:
Expand Down Expand Up @@ -113,7 +113,7 @@ frontend:
image:
repository: lasuite/people-frontend
pullPolicy: Always
tag: "v1.3.1"
tag: "v1.4.0"

ingress:
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions src/helm/env.d/production/values.desk.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: lasuite/people-backend
pullPolicy: Always
tag: "v1.3.1"
tag: "v1.4.0"

backend:
migrateJobAnnotations:
Expand Down Expand Up @@ -113,7 +113,7 @@ frontend:
image:
repository: lasuite/people-frontend
pullPolicy: Always
tag: "v1.3.1"
tag: "v1.4.0"

ingress:
enabled: true
Expand Down
Loading