mirror of
https://github.com/Nutomic/ibis.git
synced 2025-01-23 22:35:53 +00:00
Version 0.2.1-rc.1
This commit is contained in:
parent
a2d24862ab
commit
0e5896eab3
3 changed files with 38 additions and 12 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1986,7 +1986,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ibis"
|
name = "ibis"
|
||||||
version = "0.2.0"
|
version = "0.2.1-rc.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"activitypub_federation",
|
"activitypub_federation",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
22
Cargo.toml
22
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ibis"
|
name = "ibis"
|
||||||
version = "0.2.0"
|
version = "0.2.1-rc.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -88,18 +88,18 @@ diesel = { version = "2.2.6", default-features = false, features = [
|
||||||
"uuid",
|
"uuid",
|
||||||
"r2d2",
|
"r2d2",
|
||||||
] }
|
] }
|
||||||
diesel-derive-newtype = { version = "2.1.2" }
|
diesel-derive-newtype = "2.1.2"
|
||||||
diesel_migrations = { version = "2.2.0" }
|
diesel_migrations = "2.2.0"
|
||||||
doku = { version = "0.21.1" }
|
doku = "0.21.1"
|
||||||
jsonwebtoken = { version = "9.3.0" }
|
jsonwebtoken = "9.3.0"
|
||||||
leptos_axum = { version = "0.7.3" }
|
leptos_axum = "0.7.3"
|
||||||
bcrypt = "0.16.0"
|
bcrypt = "0.16.0"
|
||||||
diffy = { version = "0.4.0" }
|
diffy = "0.4.0"
|
||||||
enum_delegate = { version = "0.2.0" }
|
enum_delegate = "0.2.0"
|
||||||
async-trait = { version = "0.1.85" }
|
async-trait = "0.1.85"
|
||||||
config = { version = "0.15.4", features = ["toml"] }
|
config = { version = "0.15.4", features = ["toml"] }
|
||||||
tower = { version = "0.5.2" }
|
tower = "0.5.2"
|
||||||
tower-layer = { version = "0.3.3" }
|
tower-layer = "0.3.3"
|
||||||
reqwest = { version = "0.12.12", features = ["json", "cookies"] }
|
reqwest = { version = "0.12.12", features = ["json", "cookies"] }
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
env_logger = { version = "0.11.6", default-features = false }
|
env_logger = { version = "0.11.6", default-features = false }
|
||||||
|
|
26
scripts/publish_release.sh
Executable file
26
scripts/publish_release.sh
Executable file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Creating the new tag
|
||||||
|
new_tag="$1"
|
||||||
|
third_semver=$(echo $new_tag | cut -d "." -f 3)
|
||||||
|
|
||||||
|
# Goto the upper route
|
||||||
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
||||||
|
cd "$CWD/../"
|
||||||
|
|
||||||
|
|
||||||
|
# Update crate versions
|
||||||
|
old_tag=$(grep version Cargo.toml | head -1 | cut -d'"' -f 2)
|
||||||
|
sed -i "s/version = \"$old_tag\"/version = \"$new_tag\"/g" Cargo.toml
|
||||||
|
git add Cargo.toml
|
||||||
|
cargo check
|
||||||
|
git add Cargo.lock
|
||||||
|
|
||||||
|
# The commit
|
||||||
|
git commit -m"Version $new_tag"
|
||||||
|
git tag $new_tag
|
||||||
|
|
||||||
|
# Push
|
||||||
|
git push origin $new_tag
|
||||||
|
git push
|
Loading…
Reference in a new issue