Skip to content

Commit

Permalink
Merge pull request #54 from cassandra-rs/release-1.1.1
Browse files Browse the repository at this point in the history
Release 1.1.1
  • Loading branch information
kw217 committed Jun 18, 2024
2 parents 905e787 + 56294f0 commit 809b9ee
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 19 deletions.
33 changes: 21 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.

Expand All @@ -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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <tupshin@tupshin.com>", "Keith Wansbrough <Keith.Wansbrough@metaswitch.com>"]
version = "1.1.1"
authors = ["Keith Wansbrough <keithw@lochan.org>"]
links = "cassandra"
build = "build.rs"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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).

Expand Down

0 comments on commit 809b9ee

Please sign in to comment.