Skip to content

Commit b3f9d79

Browse files
committed
chore: bump versions to 1.0.0
1 parent a85334a commit b3f9d79

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In your instrumented program:
3636

3737
```toml
3838
[dependencies]
39-
venator = "0.2.0"
39+
venator = "1.0.0"
4040
```
4141

4242
```rust

venator-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venator-app",
3-
"version": "0.2.2",
3+
"version": "1.0.0",
44
"description": "",
55
"type": "module",
66
"scripts": {

venator-app/src-tauri/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "venator-app"
3-
version = "0.2.2"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "A log and trace viewer for Rust tracing and OpenTelemetry"
66
readme = "README.md"
@@ -39,7 +39,7 @@ tonic = "0.12.3"
3939
tracing = "0.1.41"
4040
tracing-subscriber = { version = "0.3.19", features = ["json"] }
4141

42-
venator-engine = { version = "0.2.1", features = ["persist"] }
42+
venator-engine = { version = "0.3.0", features = ["persist"] }
4343

4444
[features]
4545
default = ["custom-protocol"]

venator-app/src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"identifier": "com.kmdreko.venator",
33
"productName": "Venator",
4-
"version": "0.2.2",
4+
"version": "1.0.0",
55
"build": {
66
"beforeDevCommand": "npm run dev",
77
"beforeBuildCommand": "npm run build",

venator-engine/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "venator-engine"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "The core functionality that drives the Venator app"
66
readme = "README.md"

venator-engine/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
The Venator "engine" provides the functionality that powers the Venator app. It
22
is able to store, index, and query the spans, events, and related entities. Do
33
note that this crate does not have support for listening for events and spans.
4+
5+
Although the Venator application and tracing library are considered stable, this
6+
crate isn't. It is still built and somewhat documented so that someone could use
7+
it on its own.

venator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "venator"
3-
version = "0.2.0"
3+
version = "1.0.0"
44
edition = "2021"
55
description = "A tracing layer for exporting logs and spans to the Venator app"
66
readme = "README.md"

venator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ spans to the [Venator app](https://crates.io/crates/venator-app).
55

66
```toml
77
[dependencies]
8-
venator = "0.2.0"
8+
venator = "1.0.0"
99
```
1010

1111
Install it as the global subscriber:

0 commit comments

Comments
 (0)