diff --git a/Changelog b/Changelog index 30a87c8c..2d7f5fb3 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,5 @@ -since version 2.0.4 -=================== +version 2.0.5 (git tag v2.0.5rel) +================================== * fix error in latlons method for lambert projection when jScansPositively == 0 (PRe #129). * Add README.md as long description for pypi (PR #130). diff --git a/pygrib.c b/pygrib.c index 11ed3bdb..df068f94 100644 --- a/pygrib.c +++ b/pygrib.c @@ -1715,7 +1715,7 @@ static const char __pyx_k_warn[] = "warn"; static const char __pyx_k_year[] = "year"; static const char __pyx_k_zero[] = "zero"; static const char __pyx_k_1_9_0[] = "1.9.0"; -static const char __pyx_k_2_0_4[] = "2.0.4"; +static const char __pyx_k_2_0_5[] = "2.0.5"; static const char __pyx_k_Latin[] = "Latin"; static const char __pyx_k_ascii[] = "ascii"; static const char __pyx_k_atype[] = "atype"; @@ -2019,7 +2019,7 @@ static const char __pyx_k_value_must_be_float_int_or_strin[] = "value must be fl static PyObject *__pyx_kp_s_04i; static PyObject *__pyx_kp_s_12_hr_periods; static PyObject *__pyx_kp_s_1_9_0; -static PyObject *__pyx_kp_s_2_0_4; +static PyObject *__pyx_kp_s_2_0_5; static PyObject *__pyx_kp_s_30_yr_periods; static PyObject *__pyx_kp_s_3_hr_periods; static PyObject *__pyx_kp_s_6_hr_periods; @@ -34165,7 +34165,7 @@ static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_kp_s_04i, __pyx_k_04i, sizeof(__pyx_k_04i), 0, 0, 1, 0}, {&__pyx_kp_s_12_hr_periods, __pyx_k_12_hr_periods, sizeof(__pyx_k_12_hr_periods), 0, 0, 1, 0}, {&__pyx_kp_s_1_9_0, __pyx_k_1_9_0, sizeof(__pyx_k_1_9_0), 0, 0, 1, 0}, - {&__pyx_kp_s_2_0_4, __pyx_k_2_0_4, sizeof(__pyx_k_2_0_4), 0, 0, 1, 0}, + {&__pyx_kp_s_2_0_5, __pyx_k_2_0_5, sizeof(__pyx_k_2_0_5), 0, 0, 1, 0}, {&__pyx_kp_s_30_yr_periods, __pyx_k_30_yr_periods, sizeof(__pyx_k_30_yr_periods), 0, 0, 1, 0}, {&__pyx_kp_s_3_hr_periods, __pyx_k_3_hr_periods, sizeof(__pyx_k_3_hr_periods), 0, 0, 1, 0}, {&__pyx_kp_s_6_hr_periods, __pyx_k_6_hr_periods, sizeof(__pyx_k_6_hr_periods), 0, 0, 1, 0}, @@ -35475,7 +35475,7 @@ if (!__Pyx_RefNanny) { * PERFORMANCE OF THIS SOFTWARE.""" * __test__ = None # <<<<<<<<<<<<<< * del __test__ # hack so epydoc doesn't show __test__ - * __version__ = '2.0.4' + * __version__ = '2.0.5' */ if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, Py_None) < 0) __PYX_ERR(0, 170, __pyx_L1_error) @@ -35483,7 +35483,7 @@ if (!__Pyx_RefNanny) { * PERFORMANCE OF THIS SOFTWARE.""" * __test__ = None * del __test__ # hack so epydoc doesn't show __test__ # <<<<<<<<<<<<<< - * __version__ = '2.0.4' + * __version__ = '2.0.5' * */ if (__Pyx_PyObject_DelAttrStr(__pyx_m, __pyx_n_s_test) < 0) __PYX_ERR(0, 171, __pyx_L1_error) @@ -35491,14 +35491,14 @@ if (!__Pyx_RefNanny) { /* "pygrib.pyx":172 * __test__ = None * del __test__ # hack so epydoc doesn't show __test__ - * __version__ = '2.0.4' # <<<<<<<<<<<<<< + * __version__ = '2.0.5' # <<<<<<<<<<<<<< * * import numpy as np */ - if (PyDict_SetItem(__pyx_d, __pyx_n_s_version, __pyx_kp_s_2_0_4) < 0) __PYX_ERR(0, 172, __pyx_L1_error) + if (PyDict_SetItem(__pyx_d, __pyx_n_s_version, __pyx_kp_s_2_0_5) < 0) __PYX_ERR(0, 172, __pyx_L1_error) /* "pygrib.pyx":174 - * __version__ = '2.0.4' + * __version__ = '2.0.5' * * import numpy as np # <<<<<<<<<<<<<< * import warnings diff --git a/pygrib.pyx b/pygrib.pyx index 4903c3e7..022e6845 100644 --- a/pygrib.pyx +++ b/pygrib.pyx @@ -169,7 +169,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.""" __test__ = None del __test__ # hack so epydoc doesn't show __test__ -__version__ = '2.0.4' +__version__ = '2.0.5' import numpy as np import warnings diff --git a/setup.py b/setup.py index 47232ea1..9ce49622 100755 --- a/setup.py +++ b/setup.py @@ -196,7 +196,7 @@ def getq(self, s, k, fallback): long_description = f.read() setup(name = "pygrib", - version = "2.0.4", + version = "2.0.5", description = "Python module for reading/writing GRIB files", author = "Jeff Whitaker", author_email = "jeffrey.s.whitaker@noaa.gov",