Skip to content

Commit fbe85e4

Browse files
committed
change
1 parent 46998a8 commit fbe85e4

File tree

2 files changed

+12
-28
lines changed

2 files changed

+12
-28
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,8 @@ on:
2020
tags:
2121
- "v[0-9]+.[0-9]+.[0-9]+*"
2222
jobs:
23-
release:
24-
name: release ${{ matrix.target }}
25-
runs-on: ubuntu-latest
26-
strategy:
27-
fail-fast: false
28-
matrix:
29-
include:
30-
- target: x86_64-pc-windows-gnu
31-
archive: zip
32-
- target: x86_64-unknown-linux-musl
33-
archive: tar.zst
34-
- target: x86_64-apple-darwin
35-
archive: zip
36-
steps:
37-
- uses: actions/checkout@master
38-
- name: Compile and release
39-
uses: rust-build/[email protected]
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
with:
43-
RUSTTARGET: ${{ matrix.target }}
44-
ARCHIVE_TYPES: ${{ matrix.archive }}
45-
EXTRA_FILES: "README.md LICENSE"
46-
4723
create-release:
24+
permissions: write-all
4825
name: create-release
4926
runs-on: ubuntu-latest
5027
# env:
@@ -125,7 +102,7 @@ jobs:
125102

126103
steps:
127104
- name: Checkout repository
128-
uses: actions/checkout@v2
105+
uses: actions/checkout@v4
129106
with:
130107
fetch-depth: 1
131108

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
# 1.0.0 (unreleased)
1+
# 0.10.0 (unreleased)
2+
3+
This was originally supposed to be version 1.0.0, but I don't feel confident enough in the stability to call it that.
4+
5+
Highlights:
6+
7+
- add a config file (~/.config/ripgrep-all/config.jsonc) that is generated on first use, including schema
8+
- allow custom subprocess-spawning adapters defined via config file. See https://github.com/phiresky/ripgrep-all/wiki
9+
10+
Others:
211

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

1219
# 0.9.6 (2020-05-19)
1320

0 commit comments

Comments
 (0)