From 1669d73f5cc31184b9559d37cf7934e22d586c95 Mon Sep 17 00:00:00 2001 From: Eric-Mendes Date: Tue, 4 Apr 2023 17:22:18 -0300 Subject: [PATCH 1/2] fix(__to_minecraft_save): res type --- src/unexpected_isaves/save_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unexpected_isaves/save_image.py b/src/unexpected_isaves/save_image.py index 9a4b078..a9c30d0 100644 --- a/src/unexpected_isaves/save_image.py +++ b/src/unexpected_isaves/save_image.py @@ -2,7 +2,7 @@ import os from contextlib import suppress from math import sqrt -from typing import Optional, Tuple, Union +from typing import Optional, Tuple, Union, List import numpy as np import pandas as pd From 0e776de7ebd31cd945a9de7467143bec4a0f8e23 Mon Sep 17 00:00:00 2001 From: Eric-Mendes Date: Tue, 4 Apr 2023 17:24:28 -0300 Subject: [PATCH 2/2] version bump --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4d8571..72dff40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.1.1] - 2023-04-04 +### Fixed +- `__to_minecraft_save()` res type + ## [2.1.0] - 2023-03-01 ### Added - `to_rubiks()` function. diff --git a/pyproject.toml b/pyproject.toml index 40276d1..d7459b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "unexpected_isaves" -version = "2.1.0" +version = "2.1.1" description = "A Python library that paints an image on a spreadsheet, builds its pixel art in Minecraft, makes its ascii art, or makes a rubik's cube art out of it." readme = "README.md" requires-python = ">=3.8"