Skip to content

Commit

Permalink
chore: bump versions to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianwessel committed May 14, 2023
1 parent 825689b commit b16ac33
Show file tree
Hide file tree
Showing 23 changed files with 43 additions and 49 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [unreleased]
## [1.6.0] - 2023-05-14

### Bug Fixes

Expand Down Expand Up @@ -64,6 +64,7 @@ All notable changes to this project will be documented in this file.
- Update api documentation
- Update api documentation
- Update documentation
- Update CHANGELOG

### Features

Expand Down
4 changes: 2 additions & 2 deletions examples/dapr-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/dapr-example",
"version": "1.5.0",
"version": "1.6.0",
"description": "example how to use the dapr package",
"homepage": "https://purista.dev",
"private": true,
Expand Down Expand Up @@ -39,6 +39,6 @@
"@purista/dapr-sdk": "*",
"@purista/core": "*",
"zod": "3.21.4",
"@hono/node-server":"^1.0.0-rc.1"
"@hono/node-server": "^1.0.0-rc.1"
}
}
2 changes: 1 addition & 1 deletion examples/fullexample/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/full-example",
"version": "1.5.0",
"version": "1.6.0",
"description": "purista backend framework",
"homepage": "https://purista.dev",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions examples/kubernetes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/kubernetes-example",
"version": "1.5.0",
"version": "1.6.0",
"description": "example how to deploy a single service in kubernetes",
"homepage": "https://purista.dev",
"private": true,
Expand Down Expand Up @@ -40,6 +40,6 @@
"@purista/core": "*",
"@purista/k8s-sdk": "*",
"zod": "3.21.4",
"@hono/node-server":"^1.0.0-rc.1"
"@hono/node-server": "^1.0.0-rc.1"
}
}
6 changes: 3 additions & 3 deletions examples/mqtt-bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/mqtt-example",
"version": "1.5.0",
"version": "1.6.0",
"description": "purista backend framework",
"homepage": "https://purista.dev",
"private": true,
Expand All @@ -17,8 +17,8 @@
"scripts": {
"start": "ts-node src/index.ts | pino-pretty",
"dev": "NODE_ENV=development ts-node-dev src/index.ts | pino-pretty",
"mqtt:up":"docker start purista-mqtt || docker run -p 1883:1883 -p 9001:9001 -d -v ./mosquitto.conf:/mosquitto/config/mosquitto.conf --name purista-mqtt eclipse-mosquitto",
"mqtt:down":"docker container stop $(docker container ls -q --filter name=purista-mqtt)",
"mqtt:up": "docker start purista-mqtt || docker run -p 1883:1883 -p 9001:9001 -d -v ./mosquitto.conf:/mosquitto/config/mosquitto.conf --name purista-mqtt eclipse-mosquitto",
"mqtt:down": "docker container stop $(docker container ls -q --filter name=purista-mqtt)",
"lint": "eslint . --ext .ts,.json --cache . --fix",
"test": "jest",
"bump:major": "npm version major --no-git-tag-version",
Expand Down
37 changes: 15 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.0",
"version": "1.6.0",
"private": true,
"scripts": {
"start": "npm run dev -w examples/fullexample",
Expand All @@ -23,7 +23,7 @@
"commit:patch": "npm version patch --no-git-tag-version && scripts/commitVersion.sh",
"vuepress": "npm run vuepress -w website",
"check:cycling": "npx madge --circular --exclude '\\.d\\.ts$' --extensions ts ./packages",
"sign" : "git rebase --exec \"git commit --amend --no-edit -n -S\" -i"
"sign": "git rebase --exec \"git commit --amend --no-edit -n -S\" -i"
},
"workspaces": [
"./packages/*",
Expand Down
2 changes: 1 addition & 1 deletion packages/amqpbridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/amqpbridge",
"version": "1.5.0",
"version": "1.6.0",
"description": "rabbitMQ eventbridge for PURISTA backend framework",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/amqpbridge/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/cli",
"version": "1.5.0",
"version": "1.6.0",
"description": "cli helper for PURISTA backend framework",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/core",
"version": "1.5.0",
"version": "1.6.0",
"description": "purista backend framework",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/dapr-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/dapr-sdk",
"version": "1.5.0",
"version": "1.6.0",
"description": "SDK and helper to run PURISTA services in Dapr",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/dapr-sdk/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/httpserver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/httpserver",
"version": "1.5.0",
"version": "1.6.0",
"description": "Simple http server service based on fastify for PURISTA backend framework",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/httpserver/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/k8s-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/k8s-sdk",
"version": "1.5.0",
"version": "1.6.0",
"description": "SDK and helper to run PURISTA services in Kubernetes",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/k8s-sdk/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/mqttbridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/mqttbridge",
"version": "1.5.0",
"version": "1.6.0",
"description": "MQTT eventbridge for PURISTA backend framework",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/mqttbridge/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const puristaVersion = '1.5.0'
export const puristaVersion = '1.6.0'
2 changes: 1 addition & 1 deletion packages/state-store-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/redis-state-store",
"version": "1.5.0",
"version": "1.6.0",
"description": "State store with redis as database",
"homepage": "https://purista.dev",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purista/website",
"version": "1.5.0",
"version": "1.6.0",
"private": true,
"scripts": {
"dev": "vuepress dev src",
Expand Down

0 comments on commit b16ac33

Please sign in to comment.