From 56294f05f46082d224da8accc6367321b6cb91f1 Mon Sep 17 00:00:00 2001 From: Keith Wansbrough Date: Tue, 18 Jun 2024 15:37:21 +0100 Subject: [PATCH] Release 1.1.1 Update repo location. Signed-off-by: Keith Wansbrough --- CHANGELOG.md | 33 +++++++++++++++++++++------------ CONTRIBUTING.md | 2 +- Cargo.toml | 6 +++--- README.md | 6 +++--- 4 files changed, 28 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ace9a10..ffd81f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed +## [1.1.1] - 2024-06-18 + +### Changed +- Update repo location from + [Metaswitch/cassandra-sys-rs](https://github.com/Metaswitch/cassandra-sys-rs) to + [cassandra-rs/cassandra-sys-rs](https://github.com/cassandra-rs/cassandra-sys-rs), + and update maintainer's affiliation. + ## [1.1.0] - 2022-03-30 ### Added * Added feature flag `early_access_min_tls_version`, allowing use of the `cass_ssl_set_min_protocol_version` method yet to be released in the driver. @@ -68,7 +76,7 @@ This is the minimum supported version of the C++ driver. At one point some development was done on preparing a version 0.9.0 using a newer version of bindgen, but the work was not completed or released. See the -[version-0.9](https://github.com/Metaswitch/cassandra-sys-rs/tree/version-0.9) branch +[version-0.9](https://github.com/cassandra-rs/cassandra-sys-rs/tree/version-0.9) branch to follow that development. In due course this may be merged to master, but for the moment we recommend you use the released versions. @@ -81,14 +89,15 @@ released versions. ### Changed - (Pre-fork version.) -[Unreleased]: https://github.com/Metaswitch/cassandra-sys-rs/compare/1.1.0...HEAD -[1.1.0]: https://github.com/Metaswitch/cassandra-sys-rs/compare/1.0.0...1.1.0 -[1.0.0]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.12.3...1.0.0 -[0.12.3]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.12.2...0.12.3 -[0.12.2]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.12.1...0.12.2 -[0.12.1]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.12.0...0.12.1 -[0.12.0]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.11.0...0.12.0 -[0.11.0]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.10.0...0.11.0 -[0.10.0]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.8.8...0.10.0 -[0.8.8]: https://github.com/Metaswitch/cassandra-sys-rs/compare/0.8.7...0.8.8 -[0.8.7]: https://github.com/Metaswitch/cassandra-sys-rs/tree/0.8.7 +[Unreleased]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/1.1.1...HEAD +[1.1.1]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/1.1.0...1.1.1 +[1.1.0]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/1.0.0...1.1.0 +[1.0.0]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.12.3...1.0.0 +[0.12.3]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.12.2...0.12.3 +[0.12.2]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.12.1...0.12.2 +[0.12.1]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.12.0...0.12.1 +[0.12.0]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.11.0...0.12.0 +[0.11.0]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.10.0...0.11.0 +[0.10.0]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.8.8...0.10.0 +[0.8.8]: https://github.com/cassandra-rs/cassandra-sys-rs/compare/0.8.7...0.8.8 +[0.8.7]: https://github.com/cassandra-rs/cassandra-sys-rs/tree/0.8.7 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 989fd87..f28543d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ A few important notes: * There are no tests in this repo, but there are examples which at least use most features. If it makes sense, when you're adding a feature please add to the examples. -* Please do ensure you carry your changes through to https://github.com/Metaswitch/cassandra-rs +* Please do ensure you carry your changes through to https://github.com/cassandra-rs/cassandra-rs and add tests there (if that makes sense). * In general: I know this code isn't as nice as it could be, but please ensure new code does things better, and if you have an opportunity to clean up old diff --git a/Cargo.toml b/Cargo.toml index 7b7d146..3d24d46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,14 +2,14 @@ description = "A bindgen-generated Rust wrapper around the DataStax Cassandra C++ driver plus working examples. You probably want to use the \"cassandra-cpp\" crate which provides a safe wrapper." documentation = "https://docs.rs/cassandra-sys-rs" # no homepage yet -repository = "https://github.com/Metaswitch/cassandra-sys-rs" +repository = "https://github.com/cassandra-rs/cassandra-sys-rs" readme = "README.md" keywords = ["Cassandra", "binding", "CQL", "client", "database" ] categories = [ "api-bindings", "database", "external-ffi-bindings" ] license = "Apache-2.0" name = "cassandra-cpp-sys" -version = "1.1.1-pre" -authors = ["Tupshin Harper ", "Keith Wansbrough "] +version = "1.1.1" +authors = ["Keith Wansbrough "] links = "cassandra" build = "build.rs" diff --git a/README.md b/README.md index 49f2281..2348daf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![Build Status](https://github.com/Metaswitch/cassandra-sys-rs/actions/workflows/build.yml/badge.svg)](https://github.com/Metaswitch/cassandra-sys-rs/actions) +[![Build Status](https://github.com/cassandra-rs/cassandra-sys-rs/actions/workflows/build.yml/badge.svg)](https://github.com/cassandra-rs/cassandra-sys-rs/actions) [![Current Version](http://img.shields.io/crates/v/cassandra-cpp-sys.svg)](https://crates.io/crates/cassandra-cpp-sys) -[![License](https://img.shields.io/github/license/Metaswitch/cassandra-sys-rs.svg)](#license) +[![License](https://img.shields.io/github/license/cassandra-rs/cassandra-sys-rs.svg)](#license) # cassandra-cpp-sys @@ -12,7 +12,7 @@ It was originally a fork of https://github.com/tupshin/cassandra-sys-rs/ but tha This project also includes a fairly complete set of examples equivalent to the ones in the C++ repository. It is quite possible to use this crate directly from your Rust code, but it will mean littering unsafe all over the place. -Instead it is recommended that you use the safe wrapper of this interface: [cassandra-cpp](https://github.com/Metaswitch/cassandra-rs). +Instead it is recommended that you use the safe wrapper of this interface: [cassandra-cpp](https://github.com/cassandra-rs/cassandra-rs). [Documentation (crates.io)](https://docs.rs/cassandra-cpp-sys).