From 64fc1ca13d429c08fb4a4c6dedc9b99b1c4e233c Mon Sep 17 00:00:00 2001
From: Guillaume Lemaitre <g.lemaitre58@gmail.com>
Date: Wed, 28 Dec 2022 14:25:48 +0100
Subject: [PATCH] REL bumpversion to 0.10.1

---
 imblearn/_version.py |  2 +-
 setup.cfg            | 17 +++++++++--------
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/imblearn/_version.py b/imblearn/_version.py
index e67ae5b4f..a4fdd70ca 100644
--- a/imblearn/_version.py
+++ b/imblearn/_version.py
@@ -22,4 +22,4 @@
 # 'X.Y.dev0' is the canonical version of 'X.Y.dev'
 #
 
-__version__ = "0.10.0"
+__version__ = "0.10.1"
diff --git a/setup.cfg b/setup.cfg
index 58df5fbe5..7c4181bca 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,14 +1,14 @@
 [bumpversion]
-current_version = 0.10.0
+current_version = 0.10.1
 tag = False
 parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
-serialize =
+serialize = 
 	{major}.{minor}.{patch}.{release}{dev}
 	{major}.{minor}.{patch}
 
 [bumpversion:part:release]
 optional_value = gamma
-values =
+values = 
 	dev
 	gamma
 
@@ -22,17 +22,17 @@ test = pytest
 [tool:pytest]
 doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
 testpaths = imblearn
-addopts =
+addopts = 
 	--doctest-modules
 	--color=yes
 	-rs
-filterwarnings =
+filterwarnings = 
 	ignore:the matrix subclass:PendingDeprecationWarning
 
 [flake8]
 max-line-length = 88
 target-version = ['py37']
-ignore =
+ignore = 
 	E24,
 	E121,
 	E123,
@@ -44,17 +44,18 @@ ignore =
 	E741,
 	W503,
 	W504
-exclude =
+exclude = 
 	.git,
 	__pycache__,
 	dist,
 	doc/_build,
 	doc/auto_examples,
 	build,
-per-file-ignores =
+per-file-ignores = 
 	examples/*: E402
 	doc/conf.py: E402
 
 [mypy]
 ignore_missing_imports = True
 allow_redefinition = True
+