Skip to content

Commit dad4c49

Browse files
authored
Merge pull request #781 from kitsudaiki/fix/update-missing-versions-for-0.10.0
related issue: #780
2 parents be4abd7 + 0c36e0f commit dad4c49

21 files changed

Lines changed: 28 additions & 26 deletions

.github/ISSUE_TEMPLATE/tag_request_issue_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,7 @@ assignees: kitsudaiki
1212
- [ ] Update Changelog
1313
- [ ] Test with SDK-API-Tester
1414
- [ ] Version in helm-chart increased
15+
- [ ] Version in cargo-file increased
16+
- [ ] Version of api-docu increased
1517
- [ ] Create Docker-Images
1618
- [ ] Create Release-Tag

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/user/rest_api/open_api_docu_hanami.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

docs/user/rest_api/open_api_docu_miko.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

docs/user/rest_api/open_api_docu_omamori.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

docs/user/rest_api/open_api_docu_ryokan.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

docs/user/rest_api/open_api_docu_sakura.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

docs/user/rest_api/open_api_docu_torii.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"name": "Apache 2.0",
1010
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
1111
},
12-
"version": "0.9.0"
12+
"version": "0.10.0"
1313
},
1414
"servers": [],
1515
"paths": {

src/binaries/hanami/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hanami"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition = "2024"
55
rust-version = "1.85.1"
66

src/binaries/hanami/src/api/http_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub async fn run_server() -> Result<(), impl Error> {
6262
url: Some("http://www.apache.org/licenses/LICENSE-2.0.html".to_string()),
6363
..Default::default()
6464
}),
65-
version: "0.9.0".to_string(),
65+
version: "0.10.0".to_string(),
6666
..Default::default()
6767
},
6868
external_docs: Some(ExternalDocumentation {

0 commit comments

Comments
 (0)