Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 6507ee7

Browse files
authored
chore: release v1.0.0-beta.16 (#681)
* chore: release `v1.0.0-beta.16` * Make `docs` job optional
1 parent c107174 commit 6507ee7

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ jobs:
5858

5959
docs:
6060
runs-on: ubuntu-latest
61+
# There is an ICE in rustc nightly which prevents this workflow from running:
62+
# https://github.com/rust-lang/rust/issues/101844
63+
# Until this is resolved, we allow this job to fail.
64+
continue-on-error: true
6165
env:
6266
RUSTDOCFLAGS: "-D warnings"
6367
steps:

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## [1.0.0-beta.16](https://github.com/iotaledger/inx-chronicle/compare/v1.0.0-beta.15...v1.0.0-beta.16) (2022-09-14)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* **db:** separate database collections into individual types (#626) (#650)
7+
8+
### Features
9+
10+
* **api:** add milestone activity endpoint ([#678](https://github.com/iotaledger/inx-chronicle/issues/678)) ([c107174](https://github.com/iotaledger/inx-chronicle/commit/c107174f9579f437317ad8d121c74de079393a21))
11+
* **api:** add milestones endpoint to explorer API ([#666](https://github.com/iotaledger/inx-chronicle/issues/666)) ([3d221bf](https://github.com/iotaledger/inx-chronicle/commit/3d221bf9b858fd317094c1623aadbf668f6f0f2f)), closes [#633](https://github.com/iotaledger/inx-chronicle/issues/633)
12+
* **api:** add routes endpoint ([#537](https://github.com/iotaledger/inx-chronicle/issues/537)) ([b1719c3](https://github.com/iotaledger/inx-chronicle/commit/b1719c362d2a76ab143be759401d2a3282a87589))
13+
* **ci:** add swagger validation CI ([#675](https://github.com/iotaledger/inx-chronicle/issues/675)) ([4153113](https://github.com/iotaledger/inx-chronicle/commit/4153113ca4d1e043abf29b6db8a997319070b03c))
14+
* **db:** remove outputs from blocks table ([#664](https://github.com/iotaledger/inx-chronicle/issues/664)) ([4329690](https://github.com/iotaledger/inx-chronicle/commit/4329690267a9ca0a0a3f6849a56514a76fea88eb)), closes [#632](https://github.com/iotaledger/inx-chronicle/issues/632)
15+
* **db:** separate database collections into individual types ([#626](https://github.com/iotaledger/inx-chronicle/issues/626)) ([#650](https://github.com/iotaledger/inx-chronicle/issues/650)) ([5d5499d](https://github.com/iotaledger/inx-chronicle/commit/5d5499d834ed2c23fede23c7d2ad8c61dfbae4af))
16+
* **telemetry:** add jaeger support ([#575](https://github.com/iotaledger/inx-chronicle/issues/575)) ([e1e4dc8](https://github.com/iotaledger/inx-chronicle/commit/e1e4dc8dc1d5cc33f7ab4afb2382708dba857d06))
17+
18+
19+
### Bug Fixes
20+
21+
* **ci:** fix coverage CI and update mongo version ([#658](https://github.com/iotaledger/inx-chronicle/issues/658)) ([e231e09](https://github.com/iotaledger/inx-chronicle/commit/e231e09c672ad6bfb6ae714ff5aea6d3a93c2095))
22+
* **tracing:** remove console ([#660](https://github.com/iotaledger/inx-chronicle/issues/660)) ([a514fc9](https://github.com/iotaledger/inx-chronicle/commit/a514fc9378c9ae832cbf4893f9f07e34c049bbdd))
23+
124
## [1.0.0-beta.15](https://github.com/iotaledger/inx-chronicle/compare/v1.0.0-beta.14...v1.0.0-beta.15) (2022-09-09)
225

326

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chronicle"
3-
version = "1.0.0-beta.15"
3+
version = "1.0.0-beta.16"
44
authors = [ "IOTA Stiftung" ]
55
edition = "2021"
66
description = "IOTA permanode implemented as an IOTA Node Extension (INX)."

0 commit comments

Comments
 (0)