diff --git a/CHANGES.md b/CHANGES.md
index 1e9dc71..0cd8aed 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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
diff --git a/README.md b/README.md
index c0a58f5..3471990 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 check [here](http://matias-ck.com/easyaccess)
(Using des credentials)
-**Current version = 1.4.0**
+**Current version = 1.4.1**
## Requirements
@@ -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
diff --git a/easyaccess/version.py b/easyaccess/version.py
index 29cf5a6..990fa00 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, 1, 'dev-d5cc31b')
+version_tag = (1, 4, 1)
__version__ = '.'.join(map(str, version_tag[:3]))
if len(version_tag) > 3: