Skip to content

Commit

Permalink
Release v3.0.0 (#718)
Browse files Browse the repository at this point in the history
Signed-off-by: Marvin A. Ruder <signed@mruder.dev>
  • Loading branch information
marvinruder authored Nov 18, 2023
1 parent 09a8dc8 commit 3272824
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/motd
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
΅΅΅ ΅ΨΪΈώ
ΫΆ΅

Welcome to Rating Tracker v2.5.0 development container!
Welcome to Rating Tracker v3.0.0 development container!

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If applicable, add screenshots and log snippets to help explain your problem.

**Environment (please complete the following information):**

- Version: [e.g. 2.5.0]
- Version: [e.g. 3.0.0]
- OS: [e.g. iOS]
- Browser: [e.g. Chrome, Safari]

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LABEL \
org.opencontainers.image.source="https://github.com/marvinruder/rating-tracker" \
org.opencontainers.image.vendor="Marvin A. Ruder" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.version="2.5.0" \
org.opencontainers.image.version="3.0.0" \
org.opencontainers.image.created=$BUILD_DATE

ENV NODE_ENV production
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "@rating-tracker/monorepo",
"version": "2.5.0",
"version": "3.0.0",
"title": "Rating Tracker Monorepo",
"author": {
"name": "Marvin A. Ruder",
"email": "ratingtracker@mruder.dev",
"url": "https://mruder.dev"
},
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "@rating-tracker/backend",
"version": "2.5.0",
"version": "3.0.0",
"title": "Rating Tracker Backend",
"author": {
"name": "Marvin A. Ruder",
"email": "ratingtracker@mruder.dev",
"url": "https://mruder.dev"
},
"license": "MIT",
Expand Down
13 changes: 6 additions & 7 deletions packages/backend/src/openapi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import {
} from "@rating-tracker/commons";
import { OpenAPIV3 } from "express-openapi-validator/dist/framework/types";

import packageInfo from "../../package.json" assert { type: "json" };

import { components } from "./components";
import * as accountEndpoint from "./paths/account";
import * as registerEndpoint from "./paths/auth/register";
Expand Down Expand Up @@ -52,14 +54,11 @@ import { servers } from "./servers";
export const openapiDocument: OpenAPIV3.Document = {
openapi: "3.0.0",
info: {
title: "Rating Tracker Backend",
version: "2.5.0",
contact: {
name: "Marvin A. Ruder",
email: "ratingtracker@mruder.dev",
},
title: packageInfo.title,
version: packageInfo.version,
contact: packageInfo.author,
license: {
name: "MIT",
name: packageInfo.license,
url: "https://opensource.org/licenses/MIT",
},
description: "Specification JSONs: [v3](/api-spec/v3).",
Expand Down
3 changes: 2 additions & 1 deletion packages/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "@rating-tracker/commons",
"version": "2.5.0",
"version": "3.0.0",
"title": "Rating Tracker Common Types and Utilities",
"author": {
"name": "Marvin A. Ruder",
"email": "ratingtracker@mruder.dev",
"url": "https://mruder.dev"
},
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "@rating-tracker/frontend",
"version": "2.5.0",
"version": "3.0.0",
"title": "Rating Tracker Frontend",
"author": {
"name": "Marvin A. Ruder",
"email": "ratingtracker@mruder.dev",
"url": "https://mruder.dev"
},
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Marvin A. Ruder <ratingtracker@mruder.dev>"
],
"description": "A collection of utilities written in Rust and compiled to WebAssembly",
"version": "2.5.0",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.lock

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

2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm"
version = "2.5.0"
version = "3.0.0"
authors = ["Marvin A. Ruder <ratingtracker@mruder.dev>"]
description = "A collection of utilities written in Rust and compiled to WebAssembly"
license = "MIT"
Expand Down

0 comments on commit 3272824

Please sign in to comment.