From 26bc031a733119783546d1c49d7cf3fc1fb77a43 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 28 Sep 2022 19:52:37 +0100 Subject: [PATCH] metadata for 1.0 Signed-off-by: Ian Jackson --- Cargo.toml | 7 ++++--- debian/changelog | 6 ++++++ macros/Cargo.toml | 5 +++-- macros/macros.rs | 5 +++++ 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 639aa11..06bd902 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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): diff --git a/debian/changelog b/debian/changelog index 1dc1d9c..c691172 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +hippotat (1.0) unstable; urgency=medium + + * Initial general release + + -- Ian Jackson Wed, 28 Sep 2022 19:52:51 +0100 + hippotat (0.2) unstable; urgency=medium * Rust version. Testing some packaging. diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 73b7469..7de97bb 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -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" diff --git a/macros/macros.rs b/macros/macros.rs index 060fe70..6ba21ce 100644 --- a/macros/macros.rs +++ b/macros/macros.rs @@ -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}; -- 2.30.2