From f3cacf6d61784ebf852e9500f6557860ee99cc55 Mon Sep 17 00:00:00 2001 From: Tommy Brunn Date: Mon, 23 May 2022 08:51:22 +0200 Subject: [PATCH 1/2] Fix manually versioned docs --- website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md b/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md index fc25129ee..8b8b764d4 100644 --- a/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md +++ b/website/versioned_docs/version-2.0.0/MigrationGuide-2-0-0.md @@ -1,6 +1,7 @@ --- -id: migration-guide-v2.0.0 +id: version-2.0.0-migration-guide-v2.0.0 title: Migrating to v2.0.0 +original_id: migration-guide-v2.0.0 --- v2.0.0 is the first major version of KafkaJS released since 2018. For most users, the required changes in order to upgrade from 1.x.x are very minor, but it is still important to read through the list of changes to know what, if any, changes need to be made. From 8aaeb2be6d083282f7180dc5da5968aa9bfac2eb Mon Sep 17 00:00:00 2001 From: Tommy Brunn Date: Mon, 23 May 2022 08:44:19 +0200 Subject: [PATCH 2/2] Bump version (v2.0.1) and update changelog --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 574671dd0..0c77ca351 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.0.1] - 2022-05-23 + +### Fixed + - Fix members leaving the group after not being assigned any partitions #1362 + - Make `REPLICA_NOT_AVAILABLE` retriable #1351 + - Document `admin.createTopics` respecting cluster default partitions number and replication factor #1360 + ## [2.0.0] - 2022-05-06 This is the first major version released in 4 years, and contains a few important breaking changes. **A [migration guide](https://kafka.js.org/docs/migration-guide-v2.0.0) has been prepared to help with the migration process.** Be sure to read it before upgrading from older versions of KafkaJS. diff --git a/package.json b/package.json index 2f30d4dd9..b1cdb5686 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kafkajs", - "version": "2.0.0", + "version": "2.0.1", "description": "A modern Apache Kafka client for node.js", "author": "Tulio Ornelas ", "main": "index.js",