Skip to content

Commit

Permalink
version 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgckind committed May 23, 2017
1 parent 74e52e9 commit 5703620
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes

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

## v1.4.0
#### 2017-APR-16
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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>
# 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>
![help_screen](data/help.gif)

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


**Current version = 1.4.0**
**Current version = 1.4.1**

## Requirements

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

conda install easyaccess==1.4.0 -c mgckind
conda install easyaccess==1.4.1 -c mgckind

## Interactive interpreter

Expand Down
2 changes: 1 addition & 1 deletion easyaccess/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def last_pip_version():
return sorted(uploads, key=lambda x: x[1])[-1][0]


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

if len(version_tag) > 3:
Expand Down

0 comments on commit 5703620

Please sign in to comment.