File tree Expand file tree Collapse file tree 5 files changed +37
-8
lines changed Expand file tree Collapse file tree 5 files changed +37
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.2 (2024-07-30)
2
+
3
+ ### Features
4
+
5
+ - basic project structure and tooling (#4 )
6
+ - add fuel-core-nats V2 (#12 )
7
+ - bootstrap the stream from Fuel node's storage (#22 )
8
+ - include nats server config in docker-compose (#34 )
9
+ - add nkey auth (#32 )
10
+ - Publish Docker image (#37 )
11
+ - add helm chart (#38 )
12
+ - simple connection test (#39 )
13
+ - add helmchart statefulset (#47 )
14
+ - update working directory in dockerfile (#50 )
15
+ - add init container to statefulset (#51 )
16
+ - bump chart version (#53 )
17
+ - init containers from helm release (#55 )
18
+ - add publishing tests (#48 )
19
+ - disable pod health checks (#57 )
20
+ - bump app version (#58 )
21
+ - add first version of streams-core crate (#61 )
22
+ - added nats publishing deduplication logic and tests (#107 )
23
+
24
+ ### Fixes
25
+
26
+ - misplaced end in helm chart (#52 )
27
+ - init containers volume mounts (#54 )
28
+ - use u32 for block height to avoid hex outputs in block subjects (#66 )
29
+ - publish compact json rather than pretty json (#105 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " fuel-data-systems"
3
- version = " 0.0.1 "
3
+ version = " 0.0.2 "
4
4
edition = " 2021"
5
5
6
6
[workspace ]
@@ -14,7 +14,7 @@ edition = "2021"
14
14
homepage = " https://fuel.network/"
15
15
license = " Apache-2.0"
16
16
repository = " https://github.com/fuellabs/data-systems"
17
- version = " 0.0.1 "
17
+ version = " 0.0.2 "
18
18
19
19
[workspace .dependencies ]
20
20
anyhow = " 1.0"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ homepage = { workspace = true }
7
7
license = { workspace = true }
8
8
repository = { workspace = true }
9
9
publish = false
10
- version = " 0.0.0 "
10
+ version = " 0.0.2 "
11
11
12
12
[dependencies ]
13
13
anyhow = { workspace = true }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ homepage = { workspace = true }
7
7
license = { workspace = true }
8
8
repository = { workspace = true }
9
9
publish = false
10
- version = " 0.0.0 "
10
+ version = " 0.0.2 "
11
11
autobenches = false
12
12
autotests = false
13
13
You can’t perform that action at this time.
0 commit comments