diff --git a/CHANGES.md b/CHANGES.md
index 00d9eb2..1e9dc71 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,7 +2,7 @@
## v1.4.0
-#### 2017-XXX-XX
+#### 2017-APR-16
- Refactor and huge clean up, now bin/ folder has the startup script (see PR #113 and #111)
- Fix metadata and cache lookup for autocompletion (see #92, #94, #93)
- Add estimate number of rows on describe_table when available (see #75)
@@ -10,7 +10,7 @@
- 80 character loading bar (see PR #103)
- Added more information to help command (see PR #100 and #109)
- Fix config option and boolean values (see Pr #115)
-- Justify comments to the left in describe_table
+- Justify comments to the left in describe_table i(#105)
- Added `change_db` option switch between dabatases without logging out (see PR #90 , #86)
- Fixes authentication and des service files
- Added api to access descut services directly (see PR #87)
diff --git a/README.md b/README.md
index 6db0856..b6f1254 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# easyaccess
+# easyaccess
![help_screen](data/help.gif)
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
(Using des credentials)
-**Current version = 1.4.0-rc5**
+**Current version = 1.4.0**
## Requirements
@@ -49,7 +49,7 @@ For a short tutorial (To be completed) check [here](http://deslogin.cosmology.il
## 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.0rc4 -c mgckind
+ conda install easyaccess==1.4.0 -c mgckind
## Interactive interpreter
diff --git a/easyaccess/version.py b/easyaccess/version.py
index 9313973..6ececeb 100644
--- a/easyaccess/version.py
+++ b/easyaccess/version.py
@@ -24,7 +24,7 @@ def last_pip_version():
return sorted(uploads, key=lambda x: x[1])[-1][0]
-version_tag = (1, 4, 0, 'rc5')
+version_tag = (1, 4, 0)
__version__ = '.'.join(map(str, version_tag[:3]))
if len(version_tag) > 3: