From 8cd9fc4a8e8eb169f11ed6649d89fb6a85415c47 Mon Sep 17 00:00:00 2001 From: "ZhengYu, Xu" Date: Mon, 5 Aug 2024 14:24:55 +0800 Subject: [PATCH] chore(release): bump version 0.8.0 -> 0.8.1 --- CHANGELOG.md | 6 ++++++ pyproject.toml | 4 ++-- sunray/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a0afa..55dad25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.8.1](https://github.com/zen-xu/sunray/compare/0.8.0..0.8.1) - 2024-08-05 + +### 🐛 Bug Fixes + +- Add encoding when fdopen slave_fd ([#69](https://github.com/zen-xu/sunray/issues/69)) - ([ae27f00](https://github.com/zen-xu/sunray/commit/ae27f00cb587b050b1f4b9e1bda85898c24e46f0)) + ## [0.8.0](https://github.com/zen-xu/sunray/compare/0.7.0..0.8.0) - 2024-07-26 ### 🚀 Features diff --git a/pyproject.toml b/pyproject.toml index 50a3cf4..986c87b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ authors = ["ZhengYu, Xu "] description = "More robust ray" name = "sunray" readme = "README.md" -version = "0.8.0" # version anchor +version = "0.8.1" # version anchor classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -32,7 +32,7 @@ sunray = 'sunray.__main__:cli' [tool.commitizen] bump_message = "chore(release): bump version $current_version -> $new_version" pre_bump_hooks = ["./update-changelog.sh"] -version = "0.8.0" # version anchor +version = "0.8.1" # version anchor version_files = ["pyproject.toml:version anchor", "sunray/__init__.py"] [build-system] diff --git a/sunray/__init__.py b/sunray/__init__.py index 78a499c..30f78a7 100644 --- a/sunray/__init__.py +++ b/sunray/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "0.8.0" +__version__ = "0.8.1" __authors__ = [ "ZhengYu, Xu ", ]