Skip to content

Commit 457f534

Browse files
committed
chore: bump version to 1.0.1
1 parent 6f4e848 commit 457f534

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Binaries are pre-built and available in the [releases page](https://github.com/k
2424

2525
### With Cargo:
2626

27-
Compiling and installing `venator` source with Cargo (requires Rust 1.76 or
27+
Compiling and installing `venator` from source with Cargo (requires Rust 1.76 or
2828
newer):
2929

3030
```
@@ -45,7 +45,7 @@ In your instrumented program:
4545

4646
```toml
4747
[dependencies]
48-
venator = "1.0.0"
48+
venator = "1.1.0"
4949
```
5050

5151
```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": "1.0.0",
3+
"version": "1.0.1",
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 = "1.0.0"
3+
version = "1.0.1"
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.3.0", features = ["persist"] }
42+
venator-engine = { version = "0.4.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": "1.0.0",
4+
"version": "1.0.1",
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.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "The core functionality that drives the Venator app"
66
readme = "README.md"

venator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "venator"
3-
version = "1.0.0"
3+
version = "1.1.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 = "1.0.0"
8+
venator = "1.1.0"
99
```
1010

1111
Install it as the global subscriber:

0 commit comments

Comments
 (0)