Skip to content

Commit

Permalink
Bump version to v3.0.0 (#274)
Browse files Browse the repository at this point in the history
Bump version to v3.0.0
  • Loading branch information
YZ775 committed Nov 17, 2023
1 parent b9cfcf8 commit 1d898ce
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed
## [3.0.0] - 2023-11-16

### Changed
- TLS is now required for crypts API ([#270](https://github.com/cybozu-go/sabakan/pull/270))
- see docs about [HTTPS API](https://github.com/cybozu-go/sabakan/pull/272) and [Usage](https://github.com/cybozu-go/sabakan/blob/main/docs/sabakan.md#usage)
- Bump version to v3 and update dependencies in [#273](https://github.com/cybozu-go/sabakan/pull/273)
- Update dependencies in [#266](https://github.com/cybozu-go/sabakan/pull/266)

### Fixed
- Fix to check error of etcd watch response in [#267](https://github.com/cybozu-go/sabakan/pull/267)
- Enable tests related with vTPM ([#272](https://github.com/cybozu-go/sabakan/pull/272))

## [2.13.2] - 2023-02-24

Expand Down Expand Up @@ -256,16 +264,16 @@ No changes. Only for updating Docker base image.
## [1.2.0] - 2019-02-13

### Added
- `Machine.Info` brings NIC configuration information ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
- `Machine.Info` brings NIC configuration information ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
This new information is also exposed in GraphQL and REST API.
- `ipam.json` adds new mandatory field `node-gateway-offset` ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
- `ipam.json` adds new mandatory field `node-gateway-offset` ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
Existing installations continue to work thanks to automatic data conversion.

### Changed
- GraphQL data type `BMCInfoIPv4` is renamed to `NICConfig`.

### Removed
- `dhcp.json` obsoletes `gateway-offset` field ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
- `dhcp.json` obsoletes `gateway-offset` field ([#136](https://github.com/cybozu-go/sabakan/pull/136)).
The field is moved to `ipam.json` as `node-gateway-offset`.

## [1.1.0] - 2019-01-29
Expand All @@ -291,7 +299,8 @@ No changes. Only for updating Docker base image.

See [CHANGELOG-0](./CHANGELOG-0.md).

[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v2.13.2...HEAD
[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v3.0.0...HEAD
[3.0.0]: https://github.com/cybozu-go/sabakan/compare/v2.13.2...v3.0.0
[2.13.2]: https://github.com/cybozu-go/sabakan/compare/v2.13.1...v2.13.2
[2.13.1]: https://github.com/cybozu-go/sabakan/compare/v2.13.0...v2.13.1
[2.13.0]: https://github.com/cybozu-go/sabakan/compare/v2.12.0...v2.13.0
Expand Down
3 changes: 1 addition & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ It should look like:

Increment schema version
------------------------

When a backward-incompatible change is to be merged to `main`, the schema version must be incremented
When a backward-incompatible change in the data structure which is stored in etcd is to be merged to `main`, the schema version must be incremented
and conversion from old schema need to be implemented.

1. Increment `SchemaVersion` in [version.go](./version.go) by 1.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package sabakan

// Version is sabakan version
const Version = "2.13.2"
const Version = "3.0.0"

// SchemaVersion is the schema version
const SchemaVersion = "3"

0 comments on commit 1d898ce

Please sign in to comment.