Skip to content

Commit

Permalink
1.3.0 release
Browse files Browse the repository at this point in the history
- bumped version to 1.3.0
- updated README.md
- updated CHANGELOG.md
  • Loading branch information
Kamil Triščík authored and kamil-triscik committed Oct 22, 2024
1 parent 54e8508 commit 60441aa
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.3.0] - 2024-10-22
Version **1.3.0** introduces few small improvements.

### Changed
* Extended `braiins.bos.v1.Platform` enumeration with `PLATFORM_STM32MP157C_II2_BMM1` variant,
* Extended `braiins.bos.v1.SupportArchiveFormat` enumeration with `SUPPORT_ARCHIVE_FORMAT_ZIP_ENCRYPTED` variant.
Expand Down
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This repository contains protocol buffers for the new Braiins OS+ Public API, wh

| Public API Version | BOS version |
|--------------------|-------------|
| 1.3.0 | 24.09 |
| 1.2.0 | 24.06 |
| 1.1.0 | 24.04 |
| 1.0.0 | 24.03 |
Expand Down Expand Up @@ -142,8 +143,9 @@ $ grpcurl -plaintext -H 'authorization:FvZarvVQLCtzNaM6' miner:50051 braiins.bos
"uid": "lAOJ0RbI6axyOyGf",
"minerIdentity": {
"brand": "MINER_BRAND_ANTMINER",
"model": "MINER_MODEL_ANTMINER_S19J_PRO",
"model": "MINER_MODEL_ANTMINER_S19J_PRO", // Deprecated, use miner_model
"name": "Antminer S19J Pro"
"miner_model": "Antminer S19J Pro",
},
"platform": "PLATFORM_AM3_BBB",
"bosMode": "BOS_MODE_NAND",
Expand All @@ -152,9 +154,13 @@ $ grpcurl -plaintext -H 'authorization:FvZarvVQLCtzNaM6' miner:50051 braiins.bos
"major": "2022-09-13-0-11012d53-22.08-plus",
"bosPlus": true
},
"hostname": "bosminer",
"hostname": "localhost",
"macAddress": "94:e3:6d:fb:89:ad",
"systemUptime": "90919"
"systemUptime": "90919", // Deprecated, use system_uptime_s
"bosminer_uptime_s": "5050",
"system_uptime_s": "90919",
"status": "MINER_STATUS_NORMAL",
"kernel_version": "3.8.13+"
}

```
Expand All @@ -164,8 +170,11 @@ It is important to note what version of Public API must be used for communicatio
```shell
$ grpcurl -plaintext miner:50051 braiins.bos.ApiVersionService/GetApiVersion
{
"major": "1",
"pre": "alpha"
"major": "1",
"minor": "3",
"patch": "0",
"pre": "",
"build": ""
}
```
**Note**: Version `1.0.0-<ver>` is actually `1.0.0-<ver>.0`. `0` as default value was dropped during serialization.
Expand Down
2 changes: 1 addition & 1 deletion proto/bos/version.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ option go_package = "github.com/braiins/bos-plus-api/braiins/bos;bos_proto";
// proto3 extensions and proto3 does not allow specifying custom
// default values. Value follows semver format.

// LATEST_API_VERSION=1.2.0
// LATEST_API_VERSION=1.3.0
message ApiVersion {
uint64 major = 1;
uint64 minor = 2;
Expand Down

0 comments on commit 60441aa

Please sign in to comment.