diff --git a/CHANGELOG.md b/CHANGELOG.md index 7988a81..3bd0384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## v0.6.0 - 2024-12-18 ### Added - Add `Kafka.version_info` and `Kafka.librdkafka_version` methods. diff --git a/LICENSE b/LICENSE index 4fd8e2c..421fc92 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) British Telecommunications plc, 2023 +Copyright (c) British Telecommunications plc, 2024 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/shard.yml b/shard.yml index 78a6783..8a2e38a 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: crafka -version: 0.5.0 +version: 0.6.0 crystal: 1.11.2 diff --git a/src/crafka.cr b/src/crafka.cr index 0591aa5..503c6cc 100644 --- a/src/crafka.cr +++ b/src/crafka.cr @@ -1,7 +1,7 @@ require "./kafka/*" module Kafka - VERSION = "0.4.2" + VERSION = "0.6.0" MAX_ERR_LEN = 160 Log = ::Log.for("crafka")