addr-rs / addr

Parse domain names reliably and quickly in Rust
MIT License
51 stars 12 forks source link

Lacks a Git tag for 0.15.2 #14

Closed Minoru closed 2 years ago

Minoru commented 2 years ago

Crates.io says that 0.15.2 was published 4 days ago, but the newest commit was 15 days ago, and 0.15.2 tag is missing from GitHub.

For other curious souls: I downloaded 0.15.1 and 0.15.2 from https://crates.io/api/v1/crates/addr/0.15.2/download, renamed to tar.gz, unpacked and diffed:

diff -ruN addr-0.15.1/Cargo.toml addr-0.15.2/Cargo.toml
--- addr-0.15.1/Cargo.toml      1970-01-01 03:00:01.000000000 +0300
+++ addr-0.15.2/Cargo.toml      1970-01-01 03:00:01.000000000 +0300
@@ -12,7 +12,7 @@
 [package]
 edition = "2018"
 name = "addr"
-version = "0.15.1"
+version = "0.15.2"
 authors = ["rushmorem <rushmore@webenchanter.com>"]
 description = "A library for parsing domain names"
 documentation = "https://docs.rs/addr"
@@ -20,8 +20,6 @@
 keywords = ["tld", "gtld", "cctld", "domain", "no_std"]
 license = "MIT/Apache-2.0"
 repository = "https://github.com/addr-rs/addr"
-[package.metadata.docs.rs]
-all-features = true

 [[bench]]
 name = "list_benchmark"
diff -ruN addr-0.15.1/Cargo.toml.orig addr-0.15.2/Cargo.toml.orig
--- addr-0.15.1/Cargo.toml.orig 1973-11-30 00:33:09.000000000 +0300
+++ addr-0.15.2/Cargo.toml.orig 1973-11-30 00:33:09.000000000 +0300
@@ -1,7 +1,7 @@
 [package]
 name = "addr"
 description = "A library for parsing domain names"
-version = "0.15.1"
+version = "0.15.2"
 license = "MIT/Apache-2.0"
 repository = "https://github.com/addr-rs/addr"
 documentation = "https://docs.rs/addr"
@@ -51,6 +51,3 @@
 idna = []
 net = ["no-std-net"]
 std = []
-
-[package.metadata.docs.rs]
-all-features = true
diff -ruN addr-0.15.1/.cargo_vcs_info.json addr-0.15.2/.cargo_vcs_info.json
--- addr-0.15.1/.cargo_vcs_info.json    1970-01-01 03:00:01.000000000 +0300
+++ addr-0.15.2/.cargo_vcs_info.json    1970-01-01 03:00:01.000000000 +0300
@@ -1,5 +1,5 @@
 {
   "git": {
-    "sha1": "40bf37d50c7c7f6d86535ffe5143e13d2615a540"
+    "sha1": "be9602f2a06792f3680400373deae1a765487e1a"
   }
 }
rushmorem commented 2 years ago

Oops! This was just a quick workaround to fix documentation builds on docs.rs. I didn't release via cargo release as usual and forgot to push to Github afterwards. Now done. Thanks for the heads up!