diff --git a/CHANGES.md b/CHANGES.md
index 0dd8e63..9d2296a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,11 @@
# Changes
+
+## v1.4.7
+#### 2019-FEB-21
+- Update FAQ (PR #171)
+- Remove DB names restriction to allow other DBs (PR #170)
+
## v1.4.6
#### 2019-JAN-14
- No minor changes to the code, just the general documentation
diff --git a/Dockerfile b/Dockerfile
index 4ffe389..a4dadc0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,7 +9,7 @@ RUN apt-get install -y libaio1
RUN conda create -n env python=3.6
RUN echo "source activate env" > ~/.bashrc
ENV PATH /opt/conda/envs/env/bin:$PATH
-RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.6
+RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.7
RUN useradd --create-home --shell /bin/bash des --uid 1001
WORKDIR /home/des
USER des
diff --git a/README.md b/README.md
index 94163bf..14d7696 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# easyaccess ![](https://img.shields.io/conda/v/mgckind/easyaccess.svg) ![](https://img.shields.io/conda/pn/mgckind/easyaccess.svg) ![](https://img.shields.io/badge/python-2.7%7C3.6-blue.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01022/status.svg)](https://doi.org/10.21105/joss.01022)
+# easyaccess ![](https://img.shields.io/conda/v/mgckind/easyaccess.svg) ![](https://img.shields.io/conda/pn/mgckind/easyaccess.svg) ![](https://img.shields.io/badge/python-2.7%7C3.6-blue.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01022/status.svg)](https://doi.org/10.21105/joss.01022)
Enhanced command line SQL interpreter client for astronomical surveys.
![help_screen](data/help.gif)
@@ -8,7 +8,7 @@ Enhanced command line SQL interpreter client for astronomical surveys.
For a short tutorial check [here](http://matias-ck.com/easyaccess)
-**Current version = 1.4.6**
+**Current version = 1.4.7**
#### DES DR1 users
For DES public data release, you can start `easyaccess` with:
@@ -52,7 +52,7 @@ You can clone this repository and install `easyaccess` with:
#### Pip installation
`easyaccess` can also be installed using `pip` but it'd require the installation of the oracle instant client first as described above
- pip install easyaccess==1.4.6
+ pip install easyaccess==1.4.7
or directly from github:
@@ -61,7 +61,7 @@ or directly from github:
#### Conda installation
For Collaborators, now easyaccess can be installed using [conda](http://conda.pydata.org/docs/install/quick.html) out of the box!
- conda install easyaccess==1.4.6 -c mgckind -c anaconda
+ conda install easyaccess==1.4.7 -c mgckind -c anaconda
#### Docker
For collaborators, We have a Docker image with easyaccess pre-installed which you can obtained from:
diff --git a/config/conda/meta.yaml b/config/conda/meta.yaml
index f7ea65c..d49d721 100644
--- a/config/conda/meta.yaml
+++ b/config/conda/meta.yaml
@@ -1,9 +1,9 @@
package:
name: easyaccess
- version: "1.4.6"
+ version: "1.4.7"
source:
- git_rev: 1.4.6
+ git_rev: 1.4.7
git_url: https://github.com/mgckind/easyaccess.git
build:
diff --git a/easyaccess/version.py b/easyaccess/version.py
index 92e3f3f..c73f3dd 100644
--- a/easyaccess/version.py
+++ b/easyaccess/version.py
@@ -26,7 +26,7 @@ def last_pip_version():
return sorted(uploads, key=lambda x: x[1])[-1][0]
-version_tag = (1, 4, 6)
+version_tag = (1, 4, 7)
__version__ = ".".join(map(str, version_tag[:3]))
if len(version_tag) > 3: