Skip to content

Commit aa3ad09

Browse files
authored
Merge pull request #99 from saenyakorn/beta
Merge to Production branch
2 parents 9c0a1f5 + 39ddabd commit aa3ad09

File tree

7 files changed

+44
-4
lines changed

7 files changed

+44
-4
lines changed

.changeset/curvy-guests-develop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"api": minor
3+
---
4+
5+
Modify hello endpoint

.changeset/pre.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"mode": "exit",
3+
"tag": "beta",
4+
"initialVersions": {
5+
"api": "1.1.1",
6+
"docs": "1.1.0",
7+
"web": "1.1.0",
8+
"eslint-config-custom": "0.0.0",
9+
"tsconfig": "0.0.0",
10+
"ui": "0.1.5"
11+
},
12+
"changesets": [
13+
"curvy-guests-develop",
14+
"sixty-teachers-mix"
15+
]
16+
}

.changeset/sixty-teachers-mix.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"api": patch
3+
---
4+
5+
Fix modify world endpoint

apps/api/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# api
22

3+
## 1.2.0-beta.0
4+
5+
### Minor Changes
6+
7+
- [#95](https://github.com/saenyakorn/monorepo-versioning-gitops/pull/95) [`938b4ef`](https://github.com/saenyakorn/monorepo-versioning-gitops/commit/938b4ef687ced2885b6829982da54a85cf87c00e) Thanks [@saenyakorn](https://github.com/saenyakorn)! - Modify hello endpoint
8+
9+
### Patch Changes
10+
11+
- [#97](https://github.com/saenyakorn/monorepo-versioning-gitops/pull/97) [`ff2e67a`](https://github.com/saenyakorn/monorepo-versioning-gitops/commit/ff2e67a6b9737bba14cbaef03aa256d6deb01d32) Thanks [@saenyakorn](https://github.com/saenyakorn)! - Fix modify world endpoint
12+
313
## 1.1.1
414

515
### Patch Changes

apps/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api",
3-
"version": "1.1.1",
3+
"version": "1.2.0-beta.0",
44
"description": "",
55
"author": "",
66
"private": true,

apps/api/src/app.controller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ export class AppController {
2424
}
2525
}
2626

27-
@Get('nice')
27+
@Get('world')
2828
getNice() {
2929
return {
30-
message: 'Nice Nice',
30+
message: this.appService.getWorld(),
3131
}
3232
}
3333
}

apps/api/src/app.service.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import pk from '../package.json'
55
@Injectable()
66
export class AppService {
77
getHello(): string {
8-
return `Hello World version ${pk.version}`
8+
return `Hello World World version ${pk.version} `
9+
}
10+
11+
getWorld(): string {
12+
return `World version ${pk.version} `
913
}
1014
}

0 commit comments

Comments
 (0)