Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: Create Release
on:
push:
# run only on tags
# Release a new version every time a v6 tag is pushed.
tags:
- '**'
- '6.0.0-*'
Comment thread
bevzzz marked this conversation as resolved.
Outdated
pull_request:
# Release a new SNAPSHOT version every time a PR is merged to v6.
types: [closed]
branches: ['v6']

jobs:
release:
name: Deploy
if: startsWith(github.ref, 'refs/tags')
if: >
Comment thread
antas-marcin marked this conversation as resolved.
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags'))
|| (github.event_name == 'pull_request' && github.event.pull_request.merged == true)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -39,7 +45,7 @@ jobs:
retention-days: 1
gh-release:
name: Create a GitHub Release
if: startsWith(github.ref, 'refs/tags')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
Comment thread
antas-marcin marked this conversation as resolved.
runs-on: ubuntu-latest
needs: [ release ]
steps:
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ To start using Weaviate Java Client add the dependency to `pom.xml`:

### Uber JAR🫙

If you're building a uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
If you're building a uber-JAR with something like `maven-assembly-plugin`, use a shaded version with classifier `all`.
This ensures that all dynamically-loaded dependecies of `io.grpc` are resolved correctly.

### SNAPSHOT releases

The latest development version of `client6` is released after every merged pull request. Set the version to `6.0.0-SNAPSHOT` to include it in your project.
Please be mindful of the fact that this is not a stable release and breaking changes may be introduced.

### Gson and reflective access to internal JDK classes

Expand All @@ -41,14 +45,11 @@ applicationDefaultJvmArgs += listOf(
)
```

## Documentation
## Useful resources

- [Documentation](https://weaviate.io/developers/weaviate/current/client-libraries/java.html).

## Support

- [Stackoverflow for questions](https://stackoverflow.com/questions/tagged/weaviate).
- [Github for issues](https://github.com/weaviate/java-client/issues).
- [StackOverflow for questions about Weaviate](https://stackoverflow.com/questions/tagged/weaviate).
- [Github for issues in client6](https://github.com/weaviate/java-client/issues).

## Contributing

Expand Down