From 518d4be47d6513f95829fd073801ad6f06f5ddc9 Mon Sep 17 00:00:00 2001 From: Dirk Adler Date: Sun, 6 Dec 2020 18:48:03 +0100 Subject: [PATCH] Prepare release --- CHANGELOG.md | 20 +++++++++++--------- README.md | 1 + src/RdKafka/FFI/Library.php | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f8cdf5..e22ca133 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,18 @@ # Changelog -## 0.1.0 +All notable changes to this project are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -Supports PHP ^7.4 and ^8.0 with [librdkafka] v1.0.0 - v1.5.2. -It is compatible with the [PHP RdKafka extension] 4.0.*. +## [Unreleased] + +## [0.1.0] - 2020-12-06 + +This first pre-release supports PHP ^7.4 and ^8.0 and [librdkafka](https://github.com/edenhill/librdkafka) v1.0.0 - v1.5.2. +It is compatible with the [PHP RdKafka extension](https://github.com/arnaud-lb/php-rdkafka) 4.0.*. Note: features marked as experimental are stable, but the interface may change in future releases. -Special thanks to [@siad007] and [@carusogabriel] for early fixes and tweaks. +Special thanks to [@siad007](https://github.com/siad007) and [@carusogabriel]( https://github.com/carusogabriel) for early fixes and tweaks. ### Added @@ -19,8 +24,5 @@ Special thanks to [@siad007] and [@carusogabriel] for early fixes and tweaks. - Add examples and basic documentation - Add benchmarks - -[librdkafka]: https://github.com/edenhill/librdkafka -[PHP RdKafka extension]: https://github.com/arnaud-lb/php-rdkafka -[@siad007]: https://github.com/siad007 -[@carusogabriel]: https://github.com/carusogabriel +[Unreleased]: https://github.com/idealo/php-rdkafka-ffi/compare/v0.1.0...HEAD +[v0.1.0]: https://github.com/idealo/php-rdkafka-ffi/releases/tag/v0.1.0 \ No newline at end of file diff --git a/README.md b/README.md index 9da7447a..06087018 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Build Status](https://travis-ci.org/idealo/php-rdkafka-ffi.svg?branch=main)](https://travis-ci.org/idealo/php-rdkafka-ffi) [![Test Coverage](https://api.codeclimate.com/v1/badges/9ee55cb5587fbf64dea8/test_coverage)](https://codeclimate.com/github/idealo/php-rdkafka-ffi/test_coverage) [![Maintainability](https://api.codeclimate.com/v1/badges/9ee55cb5587fbf64dea8/maintainability)](https://codeclimate.com/github/idealo/php-rdkafka-ffi/maintainability) +[![Packagist](https://img.shields.io/packagist/v/idealo/php-rdkafka-ffi)](https://packagist.org/packages/idealo/php-rdkafka-ffi) This is a Kafka client library for PHP ^7.4 with a slim [librdkafka](https://github.com/edenhill/librdkafka) binding via [FFI](https://www.php.net/manual/en/book.ffi.php). diff --git a/src/RdKafka/FFI/Library.php b/src/RdKafka/FFI/Library.php index 9a364989..5b251755 100644 --- a/src/RdKafka/FFI/Library.php +++ b/src/RdKafka/FFI/Library.php @@ -29,7 +29,7 @@ class Library public const VERSION_AUTODETECT = ''; public const VERSION_LATEST = '1.5.2'; - public const PHP_LIBRARY_VERSION = '0.1.0-dev'; + public const PHP_LIBRARY_VERSION = '0.1.0'; private static FFI $ffi; private static string $scope = 'RdKafka';