Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #300

Merged
merged 3 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
- ".github/workflows/ci.yml"
- "crates/**/*.rs"
- "!crates/devtools/**/*.rs"
- "crates/devtools-v1/**/*.rs"
- "crates/v1/**/*.rs"
- "crates/wire/proto/*.proto"
- "**/Cargo.toml"
pull_request:
paths:
- ".github/workflows/ci.yml"
- "crates/**/*.rs"
- "!crates/devtools/**/*.rs"
- "crates/devtools-v1/**/*.rs"
- "crates/v1/**/*.rs"
- "crates/wire/proto/*.proto"
- "**/Cargo.toml"

Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
with:
toolchain: ${{matrix.rust}}
- uses: Swatinem/rust-cache@v2
- run: cargo test --manifest-path crates/devtools-v1/Cargo.toml
- run: cargo test --manifest-path crates/v1/Cargo.toml
env:
RUSTFLAGS: ${{matrix.rustflags}} ${{env.RUSTFLAGS}}

Expand All @@ -72,7 +72,7 @@ jobs:
with:
toolchain: 1.73.0 # MSRV
- uses: Swatinem/rust-cache@v2
- run: cargo check --manifest-path crates/devtools-v1/Cargo.toml --tests
- run: cargo check --manifest-path crates/v1/Cargo.toml --tests

clippy:
name: Clippy
Expand All @@ -89,7 +89,7 @@ jobs:
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --manifest-path crates/devtools-v1/Cargo.toml -- -Dclippy::all -Dclippy::pedantic
- run: cargo clippy --manifest-path crates/v1/Cargo.toml -- -Dclippy::all -Dclippy::pedantic

rustfmt:
name: Rustfmt
Expand All @@ -102,7 +102,7 @@ jobs:
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: cargo fmt --manifest-path crates/devtools-v1/Cargo.toml -- --check
- run: cargo fmt --manifest-path crates/v1/Cargo.toml -- --check

check-licenses:
runs-on: ubuntu-latest
Expand All @@ -111,7 +111,7 @@ jobs:
- name: Check Rust Licenses
uses: EmbarkStudios/cargo-deny-action@v1
with:
manifest-path: crates/devtools-v1/Cargo.toml
manifest-path: crates/v1/Cargo.toml

# outdated:
# name: Outdated
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If it's something like, security vulnerabilities chances are high you just need
do so by running this command from the repo root:

```bash
cargo update && cargo update --manifest-path examples/tauri-v1/Cargo.toml && cargo update --manifest-path crates/devtools-v1/Cargo.toml
cargo update && cargo update --manifest-path examples/tauri-v1/Cargo.toml && cargo update --manifest-path crates/v1/Cargo.toml
```

## Developing locally
Expand Down
7 changes: 7 additions & 0 deletions crates/devtools-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.3](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.2...devtools-core-v0.3.3) - 2024-05-29

### Fixed
- fix cors
- cors on dev mode
- cors issue on Windows

## [0.3.2](https://github.com/crabnebula-dev/devtools/compare/devtools-core-v0.3.1...devtools-core-v0.3.2) - 2024-05-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/devtools-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "devtools-core"
version = "0.3.2"
version = "0.3.3"
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
authors.workspace = true
edition.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions crates/devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.0-beta.3](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0-beta.2...tauri-plugin-devtools-v2.0.1) - 2024-05-29

### Other
- updated the following local packages: devtools-core

## [2.0.0-beta.2](https://github.com/crabnebula-dev/devtools/compare/tauri-plugin-devtools-v2.0.0-beta.1...tauri-plugin-devtools-v2.0.0-beta.2) - 2024-05-27

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/devtools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-devtools"
version = "2.0.0-beta.2"
version = "2.0.0-beta.3"
description = "CrabNebula devtools for Tauri: Inspect, monitor, and understand your application with ease."
authors.workspace = true
edition.workspace = true
Expand All @@ -22,7 +22,7 @@ tauri-plugin = { workspace = true, features = ["build"] }
tauri = { workspace = true, features = ["test"] }

[dependencies]
devtools-core = { path = "../devtools-core", version = "0.3.2" }
devtools-core = { path = "../devtools-core", version = "0.3.3" }
tauri.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/v1/crates/devtools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/crabnebula-dev/devtools"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
devtools-core = { path = "../../../devtools-core", version = "0.3.0" }
devtools-core = { path = "../../../devtools-core", version = "0.3.3" }
tauri = { version = "1.6.1", features = ["tracing"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tauri-build.workspace = true

[dependencies]
tauri.workspace = true
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0-beta.2" }
tauri-plugin-devtools = { path = "../../../crates/devtools", version = "2.0.0-beta.3" }
tracing.workspace = true
tokio = { workspace = true, features = ["time"] }
reqwest = { version = "0.11", default-features = false, features = [
Expand Down
Loading