From 68e18f2b1c4d2eefeb527d963384f80c6fd04273 Mon Sep 17 00:00:00 2001 From: Matthieu Viry Date: Tue, 16 Apr 2024 18:51:59 +0200 Subject: [PATCH] Prepare for 0.7.0 release --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- README.md | 3 +-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 973e51b..4599712 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.7.0] - 2023-04-16 +### Changed +- Generate bindings against latest SFCGAL version `1.5.0`. +- Update `bindgen` version to `0.69`. + ## [0.6.0] - 2023-03-27 ### Changed - Generate bindings with `size_t_is_usize` option. diff --git a/Cargo.toml b/Cargo.toml index 2fc195e..2af7ffd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sfcgal-sys" -version = "0.6.0" -authors = ["Matthieu Viry "] +version = "0.7.0" +authors = ["Matthieu Viry "] license = "MIT/Apache-2.0" edition = "2021" build = "build.rs" diff --git a/README.md b/README.md index a2ec77b..db0b5be 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,9 @@ [![Build](https://github.com/mthh/sfcgal-sys/actions/workflows/test.yml/badge.svg)](https://github.com/mthh/sfcgal-sys/actions/workflows/test.yml) [![Crates.io](https://img.shields.io/crates/v/sfcgal-sys.svg)](https://crates.io/crates/sfcgal-sys) -Rust low-level FFI bindings to [`SFCGAL`](https://sfcgal.gitlab.io/SFCGAL/) C API. +Rust low-level FFI bindings to [`SFCGAL`](https://sfcgal.gitlab.io/SFCGAL/) 1.5.x C API. Don't use this crate directly, prefer it's higher-level wrapper : [sfcgal-rs](https://github.com/mthh/sfcgal-rs). - ## Internals This crate contains a few lines of C code (compiled as a static library with `cc` crate) wrapping SFCGAL C API in order to replace the error and warning handlers (which use `printf` by default).