File tree Expand file tree Collapse file tree 2 files changed +12
-28
lines changed Expand file tree Collapse file tree 2 files changed +12
-28
lines changed Original file line number Diff line number Diff line change 20
20
tags :
21
21
- " v[0-9]+.[0-9]+.[0-9]+*"
22
22
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
-
47
23
create-release :
24
+ permissions : write-all
48
25
name : create-release
49
26
runs-on : ubuntu-latest
50
27
# env:
@@ -125,7 +102,7 @@ jobs:
125
102
126
103
steps :
127
104
- name : Checkout repository
128
- uses : actions/checkout@v2
105
+ uses : actions/checkout@v4
129
106
with :
130
107
fetch-depth : 1
131
108
Original file line number Diff line number Diff line change 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:
2
11
3
12
- auto generate parts of the readme
4
13
- add loads of debug logs and performance timings when ` --debug ` is used
5
14
- better error messages via ` anyhow `
6
15
- add cross-platform rga-fzf binary
7
- - add a config file (~ /.config/ripgrep-all/config.jsonc) that is generated on first use, including schema
8
16
- change whole code base to be async
9
17
- change adapter interface from ` (&Read, &Write) -> () ` to ` AsyncRead -> AsyncRead ` to allow chaining of adapters
10
- - allow custom subprocess-spawning adapters defined via config file
11
18
12
19
# 0.9.6 (2020-05-19)
13
20
You can’t perform that action at this time.
0 commit comments