Skip to content

Commit c6183c0

Browse files
authored
bump version to 0.7.1 & add changelog (feast-dev#1031)
Signed-off-by: Oleksii Moskalenko <[email protected]>
1 parent 1f9a4b5 commit c6183c0

File tree

15 files changed

+31
-24
lines changed

15 files changed

+31
-24
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

3-
## [v0.7.0](https://github.com/feast-dev/feast/tree/v0.7.1) (2020-09-09)
3+
## [v0.7.1](https://github.com/feast-dev/feast/tree/v0.7.1) (2020-10-07)
4+
[Full Changelog](https://github.com/feast-dev/feast/compare/sdk/go/v0.7.0...v0.7.1)
5+
6+
**Fixed bugs:**
7+
8+
- Provide stable jobName in RowMetrics labels [\#1028](https://github.com/feast-dev/feast/pull/1028) ([pyalex](https://github.com/pyalex))
9+
10+
## [v0.7.0](https://github.com/feast-dev/feast/tree/v0.7.0) (2020-09-09)
411

512
[Full Changelog](https://github.com/feast-dev/feast/compare/sdk/go/v0.6.2...v0.7.0)
613

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.7.1-SNAPSHOT</version>
19+
<version>0.7.1</version>
2020
</dependency>
2121
```
2222

docs/contributing/development-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ To run Feast Core locally:
132132
```bash
133133
# Feast Core can be configured from the following .yml file
134134
# $FEAST_REPO/core/src/main/resources/application.yml
135-
java -jar core/target/feast-core-0.7.1-SNAPSHOT-exec.jar
135+
java -jar core/target/feast-core-0.7.1-exec.jar
136136
```
137137

138138
Test whether Feast Core is running
@@ -156,7 +156,7 @@ To run Feast Job Controller locally:
156156
```bash
157157
# Feast Job Controller can be configured from the following .yml file
158158
# $FEAST_REPO/job-controller/src/main/resources/application.yml
159-
java -jar job-controller/target/feast-job-controller-0.7.1-SNAPSHOT-exec.jar
159+
java -jar job-controller/target/feast-job-controller-0.7.1-exec.jar
160160
```
161161

162162
Test whether Feast Job Controller is running:
@@ -199,7 +199,7 @@ Once Feast Serving is started, it will register its store with Feast Core \(by n
199199
Start Feast Serving server on localhost:6566:
200200

201201
```text
202-
java -jar serving/target/feast-serving-0.7.1-SNAPSHOT-exec.jar
202+
java -jar serving/target/feast-serving-0.7.1-exec.jar
203203
```
204204

205205
Test connectivity to Feast Serving
@@ -210,7 +210,7 @@ grpc_cli call localhost:6566 GetFeastServingInfo ''
210210

211211
```text
212212
connecting to localhost:6566
213-
version: "0.7.1-SNAPSHOT"
213+
version: "0.7.1"
214214
type: FEAST_SERVING_TYPE_ONLINE
215215
216216
Rpc succeeded with OK status

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.7.1-SNAPSHOT
4+
version: 0.7.1
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.7.1-SNAPSHOT
4+
version: 0.7.1

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.7.1-SNAPSHOT`
5+
Current chart version is `0.7.1`
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 Coontroller manage ingestion jobs.
33
name: feast-jobcontroller
4-
version: 0.7.1-SNAPSHOT
4+
version: 0.7.1

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

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

5-
Current chart version is `0.7.1-SNAPSHOT`
5+
Current chart version is `0.7.1`
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.7.1-SNAPSHOT
4+
version: 0.7.1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ feast-jupyter
22
=============
33
Feast Jupyter provides a Jupyter server with pre-installed Feast SDK
44

5-
Current chart version is `0.7.1-SNAPSHOT`
5+
Current chart version is `0.7.1`
66

77

88

0 commit comments

Comments
 (0)