Skip to content

Commit

Permalink
incr version
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Jul 7, 2022
1 parent ee75f9c commit fca3df8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vscode/tasks/publish-pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ done
twine upload ./dist/*

# Tag this commit
git tag v0.2.1
git tag v0.2.2

echo "Tagged as v0.2.1"
echo "Tagged as v0.2.2"
4 changes: 2 additions & 2 deletions examples/multipanel_mini_mandelbrot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
def main():
print('Creating Mandelbrot array')
width = 500
height = 400
height = 450
max_iterations = 500
tile_size=180
x = mandelbrot(height, width, max_iterations=max_iterations, zoom=1.3)
Expand Down Expand Up @@ -55,4 +55,4 @@ def mandelbrot(height, width, x=-0.5, y=0, zoom=1, max_iterations=100):
return div_time

if __name__ == '__main__':
main()
main()
2 changes: 1 addition & 1 deletion jinjaroot.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectName: figurl_tiled_image
pythonProjectVersion: 0.2.1
pythonProjectVersion: 0.2.2
projectAuthor: Jeremy Magland
projectAuthorEmail: jmagland@flatironinstitute.org
projectDescription: View a stack of tiled images via deck.gl
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was automatically generated by jinjaroot. Do not edit directly.
[metadata]
name = figurl_tiled_image
version = 0.2.1
version = 0.2.2
author = Jeremy Magland
author_email = jmagland@flatironinstitute.org
description = View a stack of tiled images via deck.gl
Expand Down

0 comments on commit fca3df8

Please sign in to comment.