Skip to content

Commit bfdc150

Browse files
committed
Fixes a broken link and make a new version with the fix
1 parent 57fe794 commit bfdc150

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# *pyRona* changelog
22

3+
## Changes made in version 0.3.6
4+
5+
* Fixed a broken help link
6+
7+
---
8+
39
## Changes made in version 0.3.5
410

511
* Adds a new feature: RONA maps
@@ -8,7 +14,7 @@
814
* The [manual](http://pyrona.readthedocs.io/en/latest/install/) now contains instructions on installing `cartopy` depending on your OS
915
* Instructions for OSX are still missing. Help, anyone?
1016
* For now, the options assumes that the first variable in the environmental file is "Longitude" and the second one is "Latitude"
11-
17+
1218
---
1319

1420
## Changes made in version 0.3.4

pyRona/plotters/map_plotter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from cartopy.mpl.gridliner import LONGITUDE_FORMATTER, LATITUDE_FORMATTER
2121
except ImportError:
2222
print("\nError importing 'Cartopy'. Please look at pyRona's manual"
23-
"(http://pyrona.readthedocs.io/en/latest/install/installing-cartopy)"
23+
"(http://pyrona.readthedocs.io/en/latest/install/#installing-cartopy)"
2424
" for information on how to install it on your system. Map plotting"
2525
" was **not** performed.")
2626
quit()

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class NotSupportedException(BaseException):
3333

3434

3535
# Set some variables (PKGBUILD inspired)
36-
VERSION = "0.3.5"
36+
VERSION = "0.3.6"
3737
URL = "https://github.com/StuntsPT/pyRona"
3838

3939

0 commit comments

Comments
 (0)