summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-06-24 10:15:39 +0200
committerRaindropsSys <raindrops@equestria.dev>2024-06-24 10:15:39 +0200
commit82867bce523577b0e9b6fa6bddba36a7773b9bca (patch)
tree119c1a8665e2831d55bc3818e0ab114e494c129a
parent9302dd7d3835ac5d645b6241dc44499249c37cd7 (diff)
downloadwhere-rs-82867bce523577b0e9b6fa6bddba36a7773b9bca.tar.gz
where-rs-82867bce523577b0e9b6fa6bddba36a7773b9bca.tar.bz2
where-rs-82867bce523577b0e9b6fa6bddba36a7773b9bca.zip
Bump version for 1.0.0 stable release
-rwxr-xr-x.idea/inspectionProfiles/Project_Default.xml14
-rwxr-xr-xCargo.lock6
-rwxr-xr-xbuild.sh51
-rwxr-xr-xwhere-rs/Cargo.toml4
-rwxr-xr-xwhered/Cargo.toml4
-rwxr-xr-xwhrd/Cargo.toml4
6 files changed, 23 insertions, 60 deletions
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100755
index 0000000..37308ce
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,14 @@
+<component name="InspectionProjectProfileManager">
+ <profile version="1.0">
+ <option name="myName" value="Project Default" />
+ <inspection_tool class="DuplicatedCode" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
+ <inspection_tool class="PyPep8Inspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
+ <inspection_tool class="PyPep8NamingInspection" enabled="false" level="WEAK WARNING" enabled_by_default="false" />
+ <inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="INFORMATION" enabled_by_default="true" />
+ <inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
+ <option name="processCode" value="true" />
+ <option name="processLiterals" value="true" />
+ <option name="processComments" value="true" />
+ </inspection_tool>
+ </profile>
+</component> \ No newline at end of file
diff --git a/Cargo.lock b/Cargo.lock
index a5ba44f..2e00599 100755
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -686,7 +686,7 @@ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
[[package]]
name = "where-rs"
-version = "1.0.0-rc.1"
+version = "1.0.0"
dependencies = [
"chrono",
"clap",
@@ -697,7 +697,7 @@ dependencies = [
[[package]]
name = "whered"
-version = "1.0.0-rc.1"
+version = "1.0.0"
dependencies = [
"clap",
"whrd",
@@ -705,7 +705,7 @@ dependencies = [
[[package]]
name = "whrd"
-version = "1.0.0-rc.1"
+version = "1.0.0"
dependencies = [
"coreutils_core",
]
diff --git a/build.sh b/build.sh
index d6dc2eb..3ab305a 100755
--- a/build.sh
+++ b/build.sh
@@ -8,54 +8,3 @@ cargo clean
cargo build --target aarch64-apple-darwin --release
cargo build --target x86_64-apple-darwin --release
cargo build --target x86_64-unknown-linux-gnu --release
-
-# aarch64-apple-darwin
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/aarch64-apple-darwin/release/whered \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/whered/$whered_version/whered-darwin-aarch64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/aarch64-apple-darwin/release/where \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/where/$where_version/where-darwin-aarch64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/aarch64-apple-darwin/release/libwhrd.dylib \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/libwhrd/$where_version-rustc.$rustc_version/libwhrd-darwin-aarch64.dylib
-
-# x86_64-apple-darwin
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-apple-darwin/release/whered \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/whered/$whered_version/whered-darwin-x86_64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-apple-darwin/release/where \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/where/$where_version/where-darwin-x86_64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-apple-darwin/release/libwhrd.dylib \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/libwhrd/$where_version-rustc.$rustc_version/libwhrd-darwin-x86_64.dylib
-
-# x86_64-unknown-linux-gnu
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-unknown-linux-gnu/release/whered \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/whered/$whered_version/whered-linux-x86_64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-unknown-linux-gnu/release/where \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/where/$where_version/where-linux-x86_64
-
-curl -v --header "PRIVATE-TOKEN: $(cat ~/.deploy.txt)" \
---header "Content-Type: multipart/form-data" \
---upload-file ./target/x86_64-unknown-linux-gnu/release/libwhrd.so \
-https://source.equestria.dev/api/v4/projects/178/packages/generic/libwhrd/$where_version-rustc.$rustc_version/libwhrd-linux-x86_64.so
diff --git a/where-rs/Cargo.toml b/where-rs/Cargo.toml
index 9b21470..62bf873 100755
--- a/where-rs/Cargo.toml
+++ b/where-rs/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "where-rs"
-version = "1.0.0-rc.1"
+version = "1.0.0"
edition = "2021"
description = "A small Rust client for the WHRD/UDP protocol, to access a list of logged in users on multiple systems at once."
-authors = ["Raindrops", "ryze132"]
+authors = ["Starscouts", "ryze132"]
[[bin]]
name = "where"
diff --git a/whered/Cargo.toml b/whered/Cargo.toml
index 8c2a4ac..22a9f62 100755
--- a/whered/Cargo.toml
+++ b/whered/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "whered"
-version = "1.0.0-rc.1"
+version = "1.0.0"
edition = "2021"
description = "A small Rust server for the WHRD/UDP protocol, to access a list of logged in users on multiple systems at once."
-authors = ["Raindrops", "ryze132"]
+authors = ["Starscouts", "ryze132"]
[dependencies]
whrd = { path = "../whrd" }
diff --git a/whrd/Cargo.toml b/whrd/Cargo.toml
index adb0635..e1855a3 100755
--- a/whrd/Cargo.toml
+++ b/whrd/Cargo.toml
@@ -1,9 +1,9 @@
[package]
name = "whrd"
-version = "1.0.0-rc.1"
+version = "1.0.0"
edition = "2021"
description = "A Rust library to work with the WHRD/UDP protocol, a protocol to access a list of logged in users on multiple systems at once."
-authors = ["Raindrops", "ryze132"]
+authors = ["Starscouts", "ryze132"]
[lib]
name = "whrd"