Skip to content

Commit 5703620

Browse files
committed
version 1.4.1
1 parent 74e52e9 commit 5703620

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Diff for: CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changes
22

3+
## v1.4.1
4+
#### 2017-MAY-23
5+
- Add option to reset password after expiration (see #125)
6+
- Add suppport for new databases (see #126)
7+
- Update tutorial link
8+
- Fix minor bugs and update commands (see #119 #120)
9+
- Fix bugs regarding cx_Oracle (see #117)
310

411
## v1.4.0
512
#### 2017-APR-16

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# easyaccess <a href="https://github.com/mgckind/easyaccess/releases/tag/1.4.0"> <img src="https://img.shields.io/badge/release-v1.4.0-blue.svg" alt="latest release" /></a> <a href="https://github.com/mgckind/easyaccess/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/license-NCSA%20License-blue.svg" alt="License" /> </a> <a href="https://pypi.python.org/pypi/easyaccess/1.4.0"><img src="https://img.shields.io/badge/pypi-v1.4.0-orange.svg" alt="pypi version"/></a><a href="https://anaconda.org/mgckind/easyaccess"> <img src="https://img.shields.io/badge/Anaconda Cloud-v1.4.0-blue.svg" /> </a>
1+
# easyaccess <a href="https://github.com/mgckind/easyaccess/releases/tag/1.4.1"> <img src="https://img.shields.io/badge/release-v1.4.1-blue.svg" alt="latest release" /></a> <a href="https://github.com/mgckind/easyaccess/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/license-NCSA%20License-blue.svg" alt="License" /> </a> <a href="https://pypi.python.org/pypi/easyaccess/1.4.1"><img src="https://img.shields.io/badge/pypi-v1.4.1-orange.svg" alt="pypi version"/></a><a href="https://anaconda.org/mgckind/easyaccess"> <img src="https://img.shields.io/badge/Anaconda Cloud-v1.4.1-blue.svg" /> </a>
22
![help_screen](data/help.gif)
33

44
Enhanced command line SQL interpreter client for astronomical databases.
@@ -10,7 +10,7 @@ For a short tutorial check [here](http://matias-ck.com/easyaccess)
1010
(Using des credentials)
1111

1212

13-
**Current version = 1.4.0**
13+
**Current version = 1.4.1**
1414

1515
## Requirements
1616

@@ -49,7 +49,7 @@ For a short tutorial check [here](http://matias-ck.com/easyaccess)
4949
## Conda installation
5050
Now easyaccess can be installed using [conda](http://conda.pydata.org/docs/install/quick.html) out of the box!
5151

52-
conda install easyaccess==1.4.0 -c mgckind
52+
conda install easyaccess==1.4.1 -c mgckind
5353

5454
## Interactive interpreter
5555

Diff for: easyaccess/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def last_pip_version():
2424
return sorted(uploads, key=lambda x: x[1])[-1][0]
2525

2626

27-
version_tag = (1, 4, 1, 'dev-d5cc31b')
27+
version_tag = (1, 4, 1)
2828
__version__ = '.'.join(map(str, version_tag[:3]))
2929

3030
if len(version_tag) > 3:

0 commit comments

Comments
 (0)