Skip to content

Commit 52327f4

Browse files
committed
bump version
1 parent 87cfe79 commit 52327f4

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

jacs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jacs"
3-
version = "0.3.6"
3+
version = "0.4.0"
44
edition = "2024"
55
rust-version = "1.93"
66
resolver = "3"

jacs/docs/jacsbook/src/reference/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"resource": {
5252
"service_name": "jacs",
53-
"service_version": "0.3.6",
53+
"service_version": "0.4.0",
5454
"environment": "production",
5555
"attributes": {
5656
"team": "platform",
@@ -280,7 +280,7 @@ For remote destinations (OTLP, Prometheus), you can specify authentication heade
280280
},
281281
"resource": {
282282
"service_name": "jacs",
283-
"service_version": "0.3.6",
283+
"service_version": "0.4.0",
284284
"environment": "production"
285285
}
286286
}

jacs/tests/observability_tests.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ fn test_sampling_configuration() {
905905
},
906906
resource: Some(ResourceConfig {
907907
service_name: "jacs-sampling-test".to_string(),
908-
service_version: Some("0.3.6".to_string()),
908+
service_version: Some("0.4.0".to_string()),
909909
environment: Some("test".to_string()),
910910
attributes: HashMap::new(),
911911
}),
@@ -1078,7 +1078,7 @@ fn test_full_production_configuration() {
10781078
},
10791079
resource: Some(ResourceConfig {
10801080
service_name: "jacs-test".to_string(),
1081-
service_version: Some("0.3.6".to_string()),
1081+
service_version: Some("0.4.0".to_string()),
10821082
environment: Some("test".to_string()),
10831083
attributes: resource_attributes,
10841084
}),
@@ -1112,7 +1112,7 @@ fn test_full_production_configuration() {
11121112
let mut tags = HashMap::new();
11131113
tags.insert("config".to_string(), "full_production".to_string());
11141114
tags.insert("service".to_string(), "jacs-test".to_string());
1115-
tags.insert("version".to_string(), "0.3.6".to_string());
1115+
tags.insert("version".to_string(), "0.4.0".to_string());
11161116

11171117
increment_counter("prod_config_test", 10, Some(tags.clone()));
11181118
set_gauge("prod_memory_usage", 1024.0, Some(tags.clone()));

0 commit comments

Comments
 (0)