Skip to content

Commit

Permalink
feat(release): bump CLI version to 0.9.0 (datahub-project#6195)
Browse files Browse the repository at this point in the history
* feat(release): bump CLI version to 0.9.0

* update breaking changes section

* add graphql breaking change

* typo
  • Loading branch information
szalai1 authored and cccs-tom committed Nov 18, 2022
1 parent a832f85 commit 646cf64
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const NameSourceStep = ({ state, updateState, prev, submit }: StepProps)
Advanced: Provide a custom CLI version to use for ingestion.
</Typography.Paragraph>
<Input
placeholder="(e.g. 0.8.42)"
placeholder="(e.g. 0.9.0)"
value={state.config?.version || ''}
onChange={(event) => setVersion(event.target.value)}
/>
Expand Down
12 changes: 12 additions & 0 deletions docs/how/updating-datahub.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ This file documents any backwards-incompatible changes in DataHub and assists pe

## Next

### Breaking Changes
- Java version 11 or greater is required.
- For any of the GraphQL search queries, the input no longer supports value but instead now accepts a list of values. These values represent an OR relationship where the field value must match any of the values.

### Potential Downtime

### Deprecations

### Other notable Changes

## 0.9.0

### Breaking Changes
- Java version 11 or greater is required.

Expand Down
2 changes: 1 addition & 1 deletion gradle/versioning/versioning.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Produces the following variables and supports token replacement
import org.apache.tools.ant.filters.ReplaceTokens

def detailedVersionString = "0.0.0-unknown-SNAPSHOT"
def cliMajorVersion = "0.8.42" // base default cli major version
def cliMajorVersion = "0.9.0" // base default cli major version
def snapshotVersion = false
if (project.hasProperty("releaseVersion")) {
version = releaseVersion
Expand Down

0 comments on commit 646cf64

Please sign in to comment.