Skip to content

Commit

Permalink
Merge pull request #95 from Eric-Mendes/fix/to-minecraft-save-res-type
Browse files Browse the repository at this point in the history
fix(__to_minecraft_save): res type
  • Loading branch information
Eric-Mendes authored Apr 4, 2023
2 parents 1cbefb5 + 0e776de commit 16aed20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/unexpected_isaves/save_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 16aed20

Please sign in to comment.