Skip to content

Commit

Permalink
Update version number to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TotallyNotChase committed Mar 11, 2024
1 parent 27f6502 commit 2b736c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions glitch_this/glitch_this.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='glitch_this',
version='1.0.2',
version='1.0.3',
author='TotallyNotChase',
author_email='[email protected]',
description='A package to glitch images and GIFs, with highly customizable options!',
Expand Down

0 comments on commit 2b736c1

Please sign in to comment.