diff --git a/glitch_this/glitch_this.py b/glitch_this/glitch_this.py index e2b1371..d0d8ee8 100644 --- a/glitch_this/glitch_this.py +++ b/glitch_this/glitch_this.py @@ -11,7 +11,7 @@ class ImageGlitcher: # Handles Image/GIF Glitching Operations - __version__ = '1.0.2' + __version__ = '1.0.3' def __init__(self): # Setting up global variables needed for glitching @@ -570,7 +570,7 @@ def __reset_rng_seed(self, offset: int = 0): Calls random.seed() with self.seed variable offset is for looping and getting new positions for each iteration that cointains the - previous one, otherwise we would get the same position on every loop and different + previous one, otherwise we would get the same position on every loop and different results afterwards on non fixed size loops """ random.seed(self.seed + offset) diff --git a/setup.py b/setup.py index ed08899..f615c4d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='glitch_this', - version='1.0.2', + version='1.0.3', author='TotallyNotChase', author_email='totallynotchase42@gmail.com', description='A package to glitch images and GIFs, with highly customizable options!',