Skip to content

Commit

Permalink
Changelog & bump version to 0.2.2
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
  • Loading branch information
pyalex committed Apr 27, 2021
1 parent bf4def6 commit d04ccd4
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 9 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
# Changelog
## [v0.2.2](https://github.com/feast-dev/feast-spark/tree/v0.2.2) (2021-04-27)

[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.1...v0.2.2)

**Implemented enhancements:**

- Add project whitelist [\#57](https://github.com/feast-dev/feast-spark/pull/57) ([terryyylim](https://github.com/terryyylim))

**Merged pull requests:**

- Bump spark version to 3.0.2 [\#60](https://github.com/feast-dev/feast-spark/pull/60) ([pyalex](https://github.com/pyalex))

## [v0.2.1](https://github.com/feast-dev/feast-spark/tree/v0.2.1) (2021-04-19)

[Full Changelog](https://github.com/feast-dev/feast-spark/compare/v0.2.0...v0.2.1)

**Implemented enhancements:**

- Cassandra as sink option for ingestion job [\#51](https://github.com/feast-dev/feast-spark/pull/51) ([khorshuheng](https://github.com/khorshuheng))

**Merged pull requests:**

- Reuse stencil client between Spark Tasks [\#58](https://github.com/feast-dev/feast-spark/pull/58) ([pyalex](https://github.com/pyalex))

## [v0.2.0](https://github.com/feast-dev/feast-spark/tree/v0.2.0) (2021-04-15)

Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Extension for running Ingestion on Spark
name: feast-spark
version: 0.2.0
version: 0.2.2
4 changes: 2 additions & 2 deletions infra/charts/feast-spark/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# feast-spark

Feast Extension for running Ingestion on Spark 0.2.0
Feast Extension for running Ingestion on Spark 0.2.2

## Installation

Expand All @@ -10,7 +10,7 @@ https://docs.feast.dev/v/master/getting-started/deploying-feast/kubernetes

| Repository | Name | Version |
|------------|------|---------|
| | feast-jobservice | 0.2.0 |
| | feast-jobservice | 0.2.2 |
| | prometheus-statsd-exporter | 0.1.2 |

## Values
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Feast Job Service manage ingestion jobs.
name: feast-jobservice
version: 0.2.0
version: 0.2.2
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/charts/feast-jobservice/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# feast-jobservice

![Version: 0.2.0](https://img.shields.io/badge/Version-0.1.0--SNAPSHOT-informational?style=flat-square)
![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square)

Feast Job Service manage ingestion jobs.

Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies:
- name: feast-jobservice
repository: ""
version: 0.2.0
version: 0.2.2
- name: prometheus-statsd-exporter
repository: ""
version: 0.1.2
Expand Down
2 changes: 1 addition & 1 deletion infra/charts/feast-spark/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: feast-jobservice
version: 0.2.0
version: 0.2.2
condition: feast-jobservice.enabled
- name: prometheus-statsd-exporter
version: 0.1.2
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</modules>

<properties>
<revision>0.2.0</revision>
<revision>0.2.2</revision>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<scala.version>2.12</scala.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object IngestionJob {

val parser = new scopt.OptionParser[IngestionJobConfig]("IngestionJob") {
// ToDo: read version from Manifest
head("feastSpark.ingestion.IngestionJob", "0.1.0-SNAPSHOT")
head("feastSpark.ingestion.IngestionJob", "0.2.2")

opt[Modes]("mode")
.action((x, c) => c.copy(mode = x))
Expand Down

0 comments on commit d04ccd4

Please sign in to comment.