Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
phiresky committed Jan 15, 2024
1 parent 46998a8 commit fbe85e4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 28 deletions.
27 changes: 2 additions & 25 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,8 @@ on:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
- target: x86_64-unknown-linux-musl
archive: tar.zst
- target: x86_64-apple-darwin
archive: zip
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
EXTRA_FILES: "README.md LICENSE"

create-release:
permissions: write-all
name: create-release
runs-on: ubuntu-latest
# env:
Expand Down Expand Up @@ -125,7 +102,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# 1.0.0 (unreleased)
# 0.10.0 (unreleased)

This was originally supposed to be version 1.0.0, but I don't feel confident enough in the stability to call it that.

Highlights:

- add a config file (~/.config/ripgrep-all/config.jsonc) that is generated on first use, including schema
- allow custom subprocess-spawning adapters defined via config file. See https://github.com/phiresky/ripgrep-all/wiki

Others:

- auto generate parts of the readme
- add loads of debug logs and performance timings when `--debug` is used
- better error messages via `anyhow`
- add cross-platform rga-fzf binary
- add a config file (~/.config/ripgrep-all/config.jsonc) that is generated on first use, including schema
- change whole code base to be async
- change adapter interface from `(&Read, &Write) -> ()` to `AsyncRead -> AsyncRead` to allow chaining of adapters
- allow custom subprocess-spawning adapters defined via config file

# 0.9.6 (2020-05-19)

Expand Down

0 comments on commit fbe85e4

Please sign in to comment.