Skip to content

Commit 7af4c44

Browse files
committed
version 1.4.0
1 parent 70ddc46 commit 7af4c44

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33

44
## v1.4.0
5-
#### 2017-XXX-XX
5+
#### 2017-APR-16
66
- Refactor and huge clean up, now bin/ folder has the startup script (see PR #113 and #111)
77
- Fix metadata and cache lookup for autocompletion (see #92, #94, #93)
88
- Add estimate number of rows on describe_table when available (see #75)
99
- Toggle color mode without exiting interpreter (see PR #110)
1010
- 80 character loading bar (see PR #103)
1111
- Added more information to help command (see PR #100 and #109)
1212
- Fix config option and boolean values (see Pr #115)
13-
- Justify comments to the left in describe_table
13+
- Justify comments to the left in describe_table i(#105)
1414
- Added `change_db` option switch between dabatases without logging out (see PR #90 , #86)
1515
- Fixes authentication and des service files
1616
- Added api to access descut services directly (see PR #87)

README.md

Lines changed: 3 additions & 3 deletions
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.3.1"><img src="https://img.shields.io/badge/pypi-v1.3.1-orange.svg" alt="pypi version"/></a><a href="https://anaconda.org/mgckind/easyaccess"> <img src="https://anaconda.org/mgckind/easyaccess/badges/version.svg" /> </a>
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://anaconda.org/mgckind/easyaccess/badges/version.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 (To be completed) check [here](http://deslogin.cosmology.il
1010
(Using des credentials)
1111

1212

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

1515
## Requirements
1616

@@ -49,7 +49,7 @@ For a short tutorial (To be completed) check [here](http://deslogin.cosmology.il
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.0rc4 -c mgckind
52+
conda install easyaccess==1.4.0 -c mgckind
5353

5454
## Interactive interpreter
5555

easyaccess/version.py

Lines changed: 1 addition & 1 deletion
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, 0, 'rc5')
27+
version_tag = (1, 4, 0)
2828
__version__ = '.'.join(map(str, version_tag[:3]))
2929

3030
if len(version_tag) > 3:

0 commit comments

Comments
 (0)