-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e2501f
commit 633d0f3
Showing
4 changed files
with
79 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- v[0-9]+.* | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: taiki-e/create-gh-release-action@v1 | ||
with: | ||
changelog: CHANGELOG.md | ||
branch: master | ||
draft: true | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
upload-assets: | ||
needs: create-release | ||
strategy: | ||
matrix: | ||
include: | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
build-tool: cargo-zigbuild | ||
- target: aarch64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
build-tool: cargo-zigbuild | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
build-tool: cargo-zigbuild | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
build-tool: cargo-zigbuild | ||
- target: x86_64-pc-windows-gnu | ||
os: windows-latest | ||
build-tool: cargo-zigbuild | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: taiki-e/upload-rust-binary-action@v1 | ||
with: | ||
bin: jgrab-client | ||
target: ${{ matrix.target }} | ||
build-tool: ${{ matrix.build-tool }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.0.0-rc1] - 2024-04-27 | ||
|
||
### Changed | ||
|
||
- Minimum required Java version changed from 8 to 11. | ||
- Replaced Apache Ivy with [JBuild](https://github.com/renatoathaydes/jbuild/) for resolving Maven dependencies. | ||
- Consider Maven local repository (before trying Maven Central) to resolve dependencies. | ||
- No longer use JCenter to resolve dependencies. | ||
- Use `JGRAB_HOME` env var to find JGrab home if available, otherwise default to `$HOME/.jgrab/`. | ||
- Cache resolved classpaths on JGrab Home (not using Ivy repository anymore). | ||
- Cache `ClassLoader` for resolve classpaths in memory. | ||
- No longer allow applications to access the JGrab's own `ClassLoader`. | ||
- Better parsing of CLI options and error reporting. | ||
|
||
## [0.6.0] - 2017-05-16 | ||
|
||
### Added | ||
|
||
- Initial JGrab Release. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters