chiark / gitweb /
metadata for 1.0
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 28 Sep 2022 18:52:37 +0000 (19:52 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 28 Sep 2022 18:52:54 +0000 (19:52 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Cargo.toml
debian/changelog
macros/Cargo.toml
macros/macros.rs

index 639aa1135e6d62b91df0c81a2473b5a8a5ab1240..06bd902bc195b8b13de9b166a7ec02afc62749cd 100644 (file)
@@ -4,11 +4,12 @@
 
 [package]
 name = "hippotat"
-version = "0.0.1"
+version = "1.0.0"
 edition = "2018"
 description="Asinine HTTP-over-IP"
-license="GPL-3.0-or-later"
+license="GPL-3.0-or-later WITH LicenseRef-Hippotat-OpenSSL-Exception"
 repository="https://salsa.debian.org/iwj/hippotat"
+homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/hippotat/current/docs/"
 
 [workspace]
 members = ["macros"]
@@ -23,7 +24,7 @@ path="server/server.rs"
 
 [dependencies]
 
-hippotat-macros = { version = "0.0.1", path = "macros" }
+hippotat-macros = { version = "1.0.0", path = "macros" }
 
 # versions specified here are mostly just guesses at what is needed
 # (or currently available):
index 1dc1d9c605d302afb5534592e1cc530e24a063b0..c69117217a1199fc7135ced1c15a2a4be1db1ab4 100644 (file)
@@ -1,3 +1,9 @@
+hippotat (1.0) unstable; urgency=medium
+
+  * Initial general release
+
+ -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 28 Sep 2022 19:52:51 +0100
+
 hippotat (0.2) unstable; urgency=medium
 
   * Rust version.  Testing some packaging.
index 73b746973e30740bd0aa273b946bd5597357145e..7de97bbbad259fab3759d1d271c8012ab7cbb5d6 100644 (file)
@@ -4,11 +4,12 @@
 
 [package]
 name = "hippotat-macros"
-version = "0.0.1"
+version = "1.0.0"
 edition = "2018"
 description="Asinine HTTP-over-IP, proc-macros"
-license="GPL-3.0-or-later"
+license="GPL-3.0-or-later WITH LicenseRef-Hippotat-OpenSSL-Exception"
 repository="https://salsa.debian.org/iwj/hippotat"
+homepage="https://www.chiark.greenend.org.uk/~ianmdlvl/hippotat/current/docs/"
 
 [dependencies]
 itertools = "0.10"
index 060fe7004e20cab3fb9466a5df793954ca185240..6ba21ce5668954751dda55f3f0c2618240a9666a 100644 (file)
@@ -2,6 +2,11 @@
 // SPDX-License-Identifier: GPL-3.0-or-later WITH LicenseRef-Hippotat-OpenSSL-Exception
 // There is NO WARRANTY.
 
+//! Hippotat - proc macros
+//!
+//! This crate is an internal detail of hippotat.
+//! It does not adhere to semver.
+
 use syn::{parse_macro_input, parse_quote};
 use syn::{Data, DataStruct, DeriveInput, LitStr, Meta, NestedMeta};
 use quote::{quote, quote_spanned, ToTokens};