Skip to content

Commit df99b03

Browse files
authored
Bump version to 0.9.0-SNAPSHOT (#1149)
* bump version Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com> * fix version in datatypes Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
1 parent 977f659 commit df99b03

18 files changed

Lines changed: 28 additions & 28 deletions

File tree

datatypes/java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Dependency Coordinates
1616
<dependency>
1717
<groupId>dev.feast</groupId>
1818
<artifactId>datatypes-java</artifactId>
19-
<version>0.8.0</version>
19+
<version>0.9.0-SNAPSHOT</version>
2020
</dependency>
2121
```
2222

docs/advanced/audit-logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Audit Logs produced by Feast are written to the console similar to normal logs b
4848
"service": "CoreService",
4949
"component": "feast-core",
5050
"id": "45329ea9-0d48-46c5-b659-4604f6193711",
51-
"version": "0.8.0"
51+
"version": "0.9.0-SNAPSHOT"
5252
},
5353
"hostname": "feast.core"
5454
"timestamp": "2020-10-20T04:45:24Z",

docs/contributing/development-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ Feast Serving has a dependency on Feast Core, thus always start Feast Core first
108108

109109
```bash
110110
# Start Feast Core locally
111-
java -jar core/target/feast-core-0.8.0-exec.jar
111+
java -jar core/target/feast-core-0.9.0-SNAPSHOT-exec.jar
112112

113113
# Start Feast Serving locally
114-
java -jar serving/target/feast-serving-0.8.0-exec.jar
114+
java -jar serving/target/feast-serving-0.9.0-SNAPSHOT-exec.jar
115115
```
116116

117117
Test whether Feast Core, Feast Serving are started and running correctly:
@@ -122,8 +122,8 @@ feast version --core-url="localhost:6565" --serving-url="localhost:6566"
122122

123123
```javascript
124124
{
125-
'serving': {'url': 'localhost:6566', 'version': '0.8.0'},
126-
'core': {'url': 'localhost:6565', 'version': '0.8.0'}
125+
'serving': {'url': 'localhost:6566', 'version': '0.9.0-SNAPSHOT'},
126+
'core': {'url': 'localhost:6565', 'version': '0.9.0-SNAPSHOT'}
127127
}
128128
```
129129

infra/charts/feast/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Feature store for machine learning.
33
name: feast
4-
version: 0.8.0
4+
version: 0.9.0-SNAPSHOT

infra/charts/feast/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
feast
22
=====
33

4-
Feature store for machine learning. Current chart version is `0.8.0`
4+
Feature store for machine learning. Current chart version is `0.9.0-SNAPSHOT`
55

66
## Installation
77

@@ -11,9 +11,9 @@ https://docs.feast.dev/v/master/getting-started/deploying-feast/kubernetes
1111

1212
| Repository | Name | Version |
1313
|------------|------|---------|
14-
| | feast-core | 0.8.0 |
15-
| | feast-jupyter | 0.8.0 |
16-
| | feast-serving | 0.8.0 |
14+
| | feast-core | 0.9.0-SNAPSHOT |
15+
| | feast-jupyter | 0.9.0-SNAPSHOT |
16+
| | feast-serving | 0.9.0-SNAPSHOT |
1717
| | prometheus-statsd-exporter | 0.1.2 |
1818
| https://charts.bitnami.com/bitnami/ | kafka | 11.8.8 |
1919
| https://kubernetes-charts.storage.googleapis.com/ | grafana | 5.0.5 |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Feast Core registers feature specifications.
33
name: feast-core
4-
version: 0.8.0
4+
version: 0.9.0-SNAPSHOT

infra/charts/feast/charts/feast-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ feast-core
22
==========
33
Feast Core registers feature specifications.
44

5-
Current chart version is `0.8.0`
5+
Current chart version is `0.9.0-SNAPSHOT`
66

77

88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Feast Job Service manage ingestion jobs.
33
name: feast-jobservice
4-
version: 0.8.0
4+
version: 0.9.0-SNAPSHOT

infra/charts/feast/charts/feast-jobservice/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ feast-jobservice
22
================
33
Feast Job Service manage ingestion jobs.
44

5-
Current chart version is `0.8.0`
5+
Current chart version is `0.9.0-SNAPSHOT`
66

77

88

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Feast Jupyter provides a Jupyter server with pre-installed Feast SDK
33
name: feast-jupyter
4-
version: 0.8.0
4+
version: 0.9.0-SNAPSHOT

0 commit comments

Comments
 (0)