Skip to content

Commit

Permalink
[#109] v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rdd9223 committed Dec 9, 2023
1 parent d97c82b commit acaed34
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'org.sopt.makers.crew'
version = '1.0.0'
version = '1.0.1'

java {
sourceCompatibility = '17'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public OpenAPI openAPI() {

Info info = new Info()
.title("Crew API 문서")
.version("1.0.0")
.version("1.0.1")
.description("Crew API 문서");

String jwtSchemeName = "JWT Authorization";
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sopt_web_product_server",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"author": "",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion server/src/common/utils/swagger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function setupSwagger(app: INestApplication): void {
const options = new DocumentBuilder()
.setTitle('Crew API 문서')
.setDescription('Crew API 문서')
.setVersion('1.0.0')
.setVersion('1.0.1')
.addBearerAuth()
.build();

Expand Down

0 comments on commit acaed34

Please sign in to comment.