From 31634973767cdd799fa0489de962dbb8350f99a3 Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Fri, 4 Oct 2024 18:11:36 +0200 Subject: [PATCH] prepare for 0.4.0 --- CHANGELOG.md | 2 +- clj/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eafc79..be23d38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ No change is breaking unless explicitly stated. ## 0.4.0 (unreleased) * Add support for Python 3.12 -* Drom support for Python 3.7 and 3.8 +* Drop support for Python 3.7 and 3.8 ## 0.3.1 (2023/04/26) diff --git a/clj/__init__.py b/clj/__init__.py index 7e56c86..e3f469a 100644 --- a/clj/__init__.py +++ b/clj/__init__.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- -__version__ = "0.3.1" +__version__ = "0.4.0" from clj.seqs import ( butlast, concat, cons, count, cycle, dedupe, distinct, dorun, drop, drop_last, drop_while, empty, every, ffirst, diff --git a/pyproject.toml b/pyproject.toml index bdbd178..215620a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clj" -version = "0.3.1" +version = "0.4.0" description = "Utilities for lazy iterables" authors = ["Baptiste Fontaine "] license = "MIT"