Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
dirx committed Dec 6, 2020
1 parent 33adced commit 518d4be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion src/RdKafka/FFI/Library.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 518d4be

Please sign in to comment.