Skip to content

Commit

Permalink
updated to Leptos rc1 and added dependabot
Browse files Browse the repository at this point in the history
replaces #193
  • Loading branch information
maccesch committed Nov 10, 2024
1 parent f4f7208 commit acb75b6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: daily
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.0-rc2] - 2024-11-10

- Updated to Leptos 0.7.0-rc1
- Updated to web-sys 0.3.72 and unpinned version (thanks to @sabify)
- Added dependabot (thanks to @sabify)

## [0.14.0-rc1] - 2024-11-06

- Fixed MediaTrackConstraints dependency (thanks to @mollymorphous)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ http1 = { version = "1", optional = true, package = "http" }
http0_2 = { version = "0.2", optional = true, package = "http" }
js-sys = "0.3"
lazy_static = "1"
leptos = "0.7.0-rc0"
leptos_axum = { version = "0.7.0-rc0", optional = true }
leptos_actix = { version = "0.7.0-rc0", optional = true }
leptos = "0.7.0-rc1"
leptos_axum = { version = "0.7.0-rc1", optional = true }
leptos_actix = { version = "0.7.0-rc1", optional = true }
leptos-spin = { version = "0.2", optional = true }
num = { version = "0.4", optional = true }
paste = "1"
send_wrapper = "0.6.0"
thiserror = "1"
thiserror = "2"
unic-langid = { version = "0.9", optional = true }
wasm-bindgen = "0.2.95"
wasm-bindgen-futures = "0.4"
Expand All @@ -47,7 +47,7 @@ codee = { version = "0.2", features = [
"prost",
] }
getrandom = { version = "0.2", features = ["js"] }
leptos_meta = { version = "0.7.0-rc0" }
leptos_meta = { version = "0.7.0-rc1" }
rand = "0.8"
serde = { version = "1", features = ["derive"] }
unic-langid = { version = "0.9", features = ["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ members = [
exclude = ["ssr", "use_webtransport_with_server"]

[workspace.dependencies]
leptos = "0.7.0-rc0"
leptos = "0.7.0-rc1"
codee = "0.2"
console_error_panic_hook = "0.1"
console_log = "1"
Expand Down
8 changes: 4 additions & 4 deletions examples/ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ codee = "0.2"
console_error_panic_hook = "0.1"
console_log = "1"
cfg-if = "1"
leptos = { version = "0.7.0-rc0", features = ["nightly"] }
leptos_axum = { version = "0.7.0-rc0", optional = true }
leptos_meta = "0.7.0-rc0"
leptos_router = { version = "0.7.0-rc0", features = [
leptos = { version = "0.7.0-rc1", features = ["nightly"] }
leptos_axum = { version = "0.7.0-rc1", optional = true }
leptos_meta = "0.7.0-rc1"
leptos_router = { version = "0.7.0-rc1", features = [
"nightly",
] }
log = "0.4"
Expand Down

0 comments on commit acb75b6

Please sign in to comment.