diff --git a/CHANGELOG.md b/CHANGELOG.md
index dac60e074a6..c5fb1885389 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,12 @@
# Changelog
+
+## [v0.9.5](https://github.com/feast-dev/feast/tree/v0.9.5) (2021-04-09)
+
+[Full Changelog](https://github.com/feast-dev/feast/compare/v0.9.4...v0.9.5)
+
+**Fixed bugs:**
+
+- Use timestamp check for token refresh [\#1444](https://github.com/feast-dev/feast/pull/1444) ([terryyylim](https://github.com/terryyylim))
## [v0.9.4](https://github.com/feast-dev/feast/tree/v0.9.4) (2021-03-30)
[Full Changelog](https://github.com/feast-dev/feast/compare/v0.9.3...v0.9.4)
@@ -10,8 +18,6 @@
**Merged pull requests:**
- \[Python SDK\]\[Auth\] Refresh token id w/o gcloud cli [\#1413](https://github.com/feast-dev/feast/pull/1413) ([pyalex](https://github.com/pyalex))
-
-# Changelog
## [v0.9.3](https://github.com/feast-dev/feast/tree/v0.9.3) (2021-02-16)
[Full Changelog](https://github.com/feast-dev/feast/compare/v0.9.2...v0.9.3)
diff --git a/datatypes/java/README.md b/datatypes/java/README.md
index a945e7ea50e..2061db7e4d0 100644
--- a/datatypes/java/README.md
+++ b/datatypes/java/README.md
@@ -16,7 +16,7 @@ Dependency Coordinates
dev.feast
datatypes-java
- 0.9.4
+ 0.9.5
```
diff --git a/docs/contributing/development-guide.md b/docs/contributing/development-guide.md
index 63f7fc0b4be..ec646870d97 100644
--- a/docs/contributing/development-guide.md
+++ b/docs/contributing/development-guide.md
@@ -109,10 +109,10 @@ Feast Serving has a dependency on Feast Core, thus always start Feast Core first
```bash
# Start Feast Core locally
-java -jar core/target/feast-core-0.9.4-exec.jar
+java -jar core/target/feast-core-0.9.5-exec.jar
# Start Feast Serving locally
-java -jar serving/target/feast-serving-0.9.4-exec.jar
+java -jar serving/target/feast-serving-0.9.5-exec.jar
```
Test whether Feast Core, Feast Serving are started and running correctly:
@@ -123,8 +123,8 @@ feast version --core-url="localhost:6565" --serving-url="localhost:6566"
```javascript
{
- 'serving': {'url': 'localhost:6566', 'version': '0.9.4'},
- 'core': {'url': 'localhost:6565', 'version': '0.9.4'}
+ 'serving': {'url': 'localhost:6566', 'version': '0.9.5'},
+ 'core': {'url': 'localhost:6565', 'version': '0.9.5'}
}
```
diff --git a/infra/charts/feast/Chart.yaml b/infra/charts/feast/Chart.yaml
index fed51ad13c1..8a510feeb62 100644
--- a/infra/charts/feast/Chart.yaml
+++ b/infra/charts/feast/Chart.yaml
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feature store for machine learning.
name: feast
-version: 0.9.4
+version: 0.9.5
diff --git a/infra/charts/feast/README.md b/infra/charts/feast/README.md
index 99f380fd8b5..b67ecabc41a 100644
--- a/infra/charts/feast/README.md
+++ b/infra/charts/feast/README.md
@@ -1,7 +1,7 @@
feast
=====
-Feature store for machine learning. Current chart version is `0.9.4`
+Feature store for machine learning. Current chart version is `0.9.5`
## Installation
@@ -11,9 +11,9 @@ https://docs.feast.dev/v/master/getting-started/deploying-feast/kubernetes
| Repository | Name | Version |
|------------|------|---------|
-| | feast-core | 0.9.4 |
-| | feast-jupyter | 0.9.4 |
-| | feast-serving | 0.9.4 |
+| | feast-core | 0.9.5 |
+| | feast-jupyter | 0.9.5 |
+| | feast-serving | 0.9.5 |
| | prometheus-statsd-exporter | 0.1.2 |
| https://charts.bitnami.com/bitnami/ | kafka | 11.8.8 |
| https://kubernetes-charts.storage.googleapis.com/ | grafana | 5.0.5 |
diff --git a/infra/charts/feast/charts/feast-core/Chart.yaml b/infra/charts/feast/charts/feast-core/Chart.yaml
index efac1d485b6..0b02be544f3 100644
--- a/infra/charts/feast/charts/feast-core/Chart.yaml
+++ b/infra/charts/feast/charts/feast-core/Chart.yaml
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Core registers feature specifications.
name: feast-core
-version: 0.9.4
+version: 0.9.5
diff --git a/infra/charts/feast/charts/feast-core/README.md b/infra/charts/feast/charts/feast-core/README.md
index f61a45befe9..ba1a70fa17b 100644
--- a/infra/charts/feast/charts/feast-core/README.md
+++ b/infra/charts/feast/charts/feast-core/README.md
@@ -2,7 +2,7 @@ feast-core
==========
Feast Core registers feature specifications.
-Current chart version is `0.9.4`
+Current chart version is `0.9.5`
diff --git a/infra/charts/feast/charts/feast-core/values.yaml b/infra/charts/feast/charts/feast-core/values.yaml
index 11d73a51c2e..3f43778a57c 100644
--- a/infra/charts/feast/charts/feast-core/values.yaml
+++ b/infra/charts/feast/charts/feast-core/values.yaml
@@ -5,7 +5,7 @@ image:
# image.repository -- Docker image repository
repository: feastdev/feast-core
# image.tag -- Image tag
- tag: 0.9.4
+ tag: 0.9.5
# image.pullPolicy -- Image pull policy
pullPolicy: IfNotPresent
diff --git a/infra/charts/feast/charts/feast-jobservice/Chart.yaml b/infra/charts/feast/charts/feast-jobservice/Chart.yaml
index 169a08bd67d..8f637a6c9d2 100644
--- a/infra/charts/feast/charts/feast-jobservice/Chart.yaml
+++ b/infra/charts/feast/charts/feast-jobservice/Chart.yaml
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Job Service manage ingestion jobs.
name: feast-jobservice
-version: 0.9.4
+version: 0.9.5
diff --git a/infra/charts/feast/charts/feast-jobservice/README.md b/infra/charts/feast/charts/feast-jobservice/README.md
index 4ad6b396fde..15273a3f3d9 100644
--- a/infra/charts/feast/charts/feast-jobservice/README.md
+++ b/infra/charts/feast/charts/feast-jobservice/README.md
@@ -2,7 +2,7 @@ feast-jobservice
================
Feast Job Service manage ingestion jobs.
-Current chart version is `0.9.4`
+Current chart version is `0.9.5`
diff --git a/infra/charts/feast/charts/feast-jobservice/values.yaml b/infra/charts/feast/charts/feast-jobservice/values.yaml
index ce0f7a64a55..47d9efd0df6 100644
--- a/infra/charts/feast/charts/feast-jobservice/values.yaml
+++ b/infra/charts/feast/charts/feast-jobservice/values.yaml
@@ -5,7 +5,7 @@ image:
# image.repository -- Docker image repository
repository: feastdev/feast-jobservice
# image.tag -- Image tag
- tag: 0.9.4
+ tag: 0.9.5
# image.pullPolicy -- Image pull policy
pullPolicy: IfNotPresent
diff --git a/infra/charts/feast/charts/feast-jupyter/Chart.yaml b/infra/charts/feast/charts/feast-jupyter/Chart.yaml
index ef10332be51..8ee208121b5 100644
--- a/infra/charts/feast/charts/feast-jupyter/Chart.yaml
+++ b/infra/charts/feast/charts/feast-jupyter/Chart.yaml
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Jupyter provides a Jupyter server with pre-installed Feast SDK
name: feast-jupyter
-version: 0.9.4
+version: 0.9.5
diff --git a/infra/charts/feast/charts/feast-jupyter/README.md b/infra/charts/feast/charts/feast-jupyter/README.md
index b90fe470ed5..6e7d0829a19 100644
--- a/infra/charts/feast/charts/feast-jupyter/README.md
+++ b/infra/charts/feast/charts/feast-jupyter/README.md
@@ -2,7 +2,7 @@ feast-jupyter
=============
Feast Jupyter provides a Jupyter server with pre-installed Feast SDK
-Current chart version is `0.9.4`
+Current chart version is `0.9.5`
diff --git a/infra/charts/feast/charts/feast-jupyter/values.yaml b/infra/charts/feast/charts/feast-jupyter/values.yaml
index 9aa2251e704..d2b830d0216 100644
--- a/infra/charts/feast/charts/feast-jupyter/values.yaml
+++ b/infra/charts/feast/charts/feast-jupyter/values.yaml
@@ -5,7 +5,7 @@ image:
# image.repository -- Docker image repository
repository: feastdev/feast-jupyter
# image.tag -- Image tag
- tag: 0.9.4
+ tag: 0.9.5
# image.pullPolicy -- Image pull policy
pullPolicy: Always
diff --git a/infra/charts/feast/charts/feast-serving/Chart.yaml b/infra/charts/feast/charts/feast-serving/Chart.yaml
index 2c8eb74f631..3061a7c9d7d 100644
--- a/infra/charts/feast/charts/feast-serving/Chart.yaml
+++ b/infra/charts/feast/charts/feast-serving/Chart.yaml
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Serving serves low-latency latest features and historical batch features.
name: feast-serving
-version: 0.9.4
+version: 0.9.5
diff --git a/infra/charts/feast/charts/feast-serving/README.md b/infra/charts/feast/charts/feast-serving/README.md
index dbf8a955ce3..6c38954ca5d 100644
--- a/infra/charts/feast/charts/feast-serving/README.md
+++ b/infra/charts/feast/charts/feast-serving/README.md
@@ -2,7 +2,7 @@ feast-serving
=============
Feast Serving serves low-latency latest features and historical batch features.
-Current chart version is `0.9.4`
+Current chart version is `0.9.5`
diff --git a/infra/charts/feast/charts/feast-serving/values.yaml b/infra/charts/feast/charts/feast-serving/values.yaml
index 9fe0ca75145..9b745a91bde 100644
--- a/infra/charts/feast/charts/feast-serving/values.yaml
+++ b/infra/charts/feast/charts/feast-serving/values.yaml
@@ -5,7 +5,7 @@ image:
# image.repository -- Docker image repository
repository: feastdev/feast-serving
# image.tag -- Image tag
- tag: 0.9.4
+ tag: 0.9.5
# image.pullPolicy -- Image pull policy
pullPolicy: IfNotPresent
diff --git a/infra/charts/feast/requirements.lock b/infra/charts/feast/requirements.lock
index dc1b2039d31..d6b48fb3079 100644
--- a/infra/charts/feast/requirements.lock
+++ b/infra/charts/feast/requirements.lock
@@ -1,16 +1,16 @@
dependencies:
- name: feast-core
repository: ""
- version: 0.9.4
+ version: 0.9.5
- name: feast-serving
repository: ""
- version: 0.9.4
+ version: 0.9.5
- name: feast-jupyter
repository: ""
- version: 0.9.4
+ version: 0.9.5
- name: feast-jobservice
repository: ""
- version: 0.9.4
+ version: 0.9.5
- name: postgresql
repository: https://kubernetes-charts.storage.googleapis.com/
version: 8.6.1
diff --git a/infra/charts/feast/requirements.yaml b/infra/charts/feast/requirements.yaml
index 0215b19ca3d..99862d521b8 100644
--- a/infra/charts/feast/requirements.yaml
+++ b/infra/charts/feast/requirements.yaml
@@ -1,16 +1,16 @@
dependencies:
- name: feast-core
- version: 0.9.4
+ version: 0.9.5
condition: feast-core.enabled
- name: feast-serving
alias: feast-online-serving
- version: 0.9.4
+ version: 0.9.5
condition: feast-online-serving.enabled
- name: feast-jupyter
- version: 0.9.4
+ version: 0.9.5
condition: feast-jupyter.enabled
- name: feast-jobservice
- version: 0.9.4
+ version: 0.9.5
condition: feast-jobservice.enabled
- name: postgresql
version: 8.6.1
diff --git a/infra/docker-compose/.env.sample b/infra/docker-compose/.env.sample
index 7bfc45ac1dd..bf043b406ca 100644
--- a/infra/docker-compose/.env.sample
+++ b/infra/docker-compose/.env.sample
@@ -1,5 +1,5 @@
COMPOSE_PROJECT_NAME=feast
-FEAST_VERSION=0.9.4
+FEAST_VERSION=0.9.5
FEAST_CORE_CONFIG=./core/core.yml
FEAST_ONLINE_SERVING_CONFIG=./serving/online-serving.yml
GCP_SERVICE_ACCOUNT=./gcp-service-accounts/placeholder.json
diff --git a/pom.xml b/pom.xml
index a439605a35e..53226b35537 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,7 +41,7 @@
- 0.9.4
+ 0.9.5
https://github.com/feast-dev/feast
UTF-8