Skip to content

Commit 4d29dd4

Browse files
committed
Add a CHANGELOG, correct presubmit yml, and bump the version to 0.2.0
1 parent 6146902 commit 4d29dd4

File tree

5 files changed

+49
-5
lines changed

5 files changed

+49
-5
lines changed

.bcr/metadata.template.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"homepage": "https://github.com/OpenAPITools/openapi-generator-bazel",
3+
"maintainers": [
4+
{
5+
"name": "William Cheng",
6+
"email": "[email protected]",
7+
"github": "wing328"
8+
},
9+
{
10+
"name": "Christian Behon",
11+
"email": "[email protected]",
12+
"github": "nucle"
13+
},
14+
{
15+
"name": "Brad Holmes",
16+
"email": "[email protected]",
17+
"github": "BradHolmes"
18+
}
19+
],
20+
"repository": [
21+
"github:OpenAPITools/openapi-generator-bazel"
22+
],
23+
"versions": [],
24+
"yanked_versions": {}
25+
}
26+

.bazelci/presubmit.yml renamed to .bcr/presubmit.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
tasks:
33
ubuntu1804:
44
build_targets:
5-
- "..."
5+
- "//:*"
66
test_targets:
7-
- "..."
7+
- "//:*"
88
macos:
99
build_targets:
10-
- "..."
10+
- "//:*"
1111
test_targets:
12-
- "..."
12+
- "//:*"

.bcr/source.template.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"integrity": "",
3+
"strip_prefix": "{REPO}-{VERSION}",
4+
"url": "https://github.com/{OWNER}/{REPO}/releases/download/{TAG}/{REPO}-{TAG}.tar.gz"
5+
}

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.2.0] - 2025-03-18
9+
10+
### Added
11+
12+
- Add CI to automatically publish to BCR
13+
- Update to support bazel v7+, and register in BCR

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "openapi_tools_generator_bazel",
3-
version = "0.1.7",
3+
version = "0.2.0",
44
compatibility_level = 0,
55
)
66

0 commit comments

Comments
 (0)