Skip to content

Commit 4a7f2c9

Browse files
committed
chore: remove dates from changelogs
1 parent c69b8e9 commit 4a7f2c9

File tree

9 files changed

+154
-144
lines changed

9 files changed

+154
-144
lines changed

.github/workflows/ci-post-merge.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,13 @@ jobs:
111111

112112
- name: Install Rust (nightly)
113113
uses: actions-rust-lang/setup-rust-toolchain@v1
114-
with: { toolchain: nightly }
114+
with:
115+
toolchain: nightly
115116

116117
- name: Install cargo-hack & cargo-minimal-versions
117118
uses: taiki-e/install-action@v1
118-
with: { tool: 'cargo-hack,cargo-minimal-versions' }
119+
with:
120+
tool: cargo-hack,cargo-minimal-versions
119121

120122
- name: Check With Minimal Versions
121123
run: cargo minimal-versions check

actix-codec/CHANGES.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
# Changes
22

3-
## Unreleased - 2023-xx-xx
3+
## Unreleased
44

55
- Minimum supported Rust version (MSRV) is now 1.65.
66

7-
## 0.5.1 - 2022-03-15
7+
## 0.5.1
88

99
- Logs emitted now use the `tracing` crate with `log` compatibility. [#451]
1010
- Minimum supported Rust version (MSRV) is now 1.49.
1111

1212
[#451]: https://github.com/actix/actix-net/pull/451
1313

14-
## 0.5.0 - 2022-02-15
14+
## 0.5.0
1515

1616
- Updated `tokio-util` dependency to `0.7.0`. [#446]
1717

1818
[#446]: https://github.com/actix/actix-net/pull/446
1919

20-
## 0.4.2 - 2021-12-31
20+
## 0.4.2
2121

2222
- No significant changes since `0.4.1`.
2323

24-
## 0.4.1 - 2021-11-05
24+
## 0.4.1
2525

2626
- Added `LinesCodec.` [#338]
2727
- `Framed::poll_ready` flushes when the buffer is full. [#409]
2828

2929
[#338]: https://github.com/actix/actix-net/pull/338
3030
[#409]: https://github.com/actix/actix-net/pull/409
3131

32-
## 0.4.0 - 2021-04-20
32+
## 0.4.0
3333

3434
- No significant changes since v0.4.0-beta.1.
3535

36-
## 0.4.0-beta.1 - 2020-12-28
36+
## 0.4.0-beta.1
3737

3838
- Replace `pin-project` with `pin-project-lite`. [#237]
3939
- Upgrade `tokio` dependency to `1`. [#237]
@@ -42,15 +42,15 @@
4242

4343
[#237]: https://github.com/actix/actix-net/pull/237
4444

45-
## 0.3.0 - 2020-08-23
45+
## 0.3.0
4646

4747
- No changes from beta 2.
4848

49-
## 0.3.0-beta.2 - 2020-08-19
49+
## 0.3.0-beta.2
5050

5151
- Remove unused type parameter from `Framed::replace_codec`.
5252

53-
## 0.3.0-beta.1 - 2020-08-19
53+
## 0.3.0-beta.1
5454

5555
- Use `.advance()` instead of `.split_to()`.
5656
- Upgrade `tokio-util` to `0.3`.
@@ -60,7 +60,7 @@
6060
- Add method on `Framed` to get a pinned reference to the underlying I/O.
6161
- Add method on `Framed` check emptiness of read buffer.
6262

63-
## 0.2.0 - 2019-12-10
63+
## 0.2.0
6464

6565
- Use specific futures dependencies.
6666

@@ -77,14 +77,14 @@
7777

7878
- Migrated to `std::future`.
7979

80-
## 0.1.2 - 2019-03-27
80+
## 0.1.2
8181

8282
- Added `Framed::map_io()` method.
8383

84-
## 0.1.1 - 2019-03-06
84+
## 0.1.1
8585

8686
- Added `FramedParts::with_read_buffer()` method.
8787

88-
## 0.1.0 - 2018-12-09
88+
## 0.1.0
8989

9090
- Move codec to separate crate.

actix-macros/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,27 @@ authors = [
77
"Rob Ede <robjtede@icloud.com>",
88
]
99
description = "Macros for Actix system and runtime"
10-
repository = "https://github.com/actix/actix-net.git"
10+
repository = "https://github.com/actix/actix-net"
1111
categories = ["network-programming", "asynchronous"]
12-
license = "MIT OR Apache-2.0"
12+
license.workspace = true
1313
edition.workspace = true
1414
rust-version.workspace = true
1515

16+
[package.metadata.cargo-machete]
17+
ignored = [
18+
"proc_macro2", # specified for minimal versions compat
19+
]
20+
1621
[lib]
1722
proc-macro = true
1823

1924
[dependencies]
2025
quote = "1"
2126
syn = { version = "2", features = ["full"] }
2227

28+
# minimal versions compat
29+
proc-macro2 = "1.0.60"
30+
2331
[dev-dependencies]
2432
actix-rt = "2"
2533

actix-rt/CHANGES.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Changes
22

3-
## Unreleased - 2023-xx-xx
3+
## Unreleased
44

55
## 2.9.0
66

77
- Add `actix_rt::System::runtime()` method to retrieve the underlying `actix_rt::Runtime` runtime.
88
- Add `actix_rt::Runtime::tokio_runtime()` method to retrieve the underlying Tokio runtime.
99
- Minimum supported Rust version (MSRV) is now 1.65.
1010

11-
## 2.8.0 - 2022-12-21
11+
## 2.8.0
1212

1313
- Add `#[track_caller]` attribute to `spawn` functions and methods. [#454]
1414
- Update `tokio-uring` dependency to `0.4`. [#473]
@@ -17,84 +17,84 @@
1717
[#454]: https://github.com/actix/actix-net/pull/454
1818
[#473]: https://github.com/actix/actix-net/pull/473
1919

20-
## 2.7.0 - 2022-03-08
20+
## 2.7.0
2121

2222
- Update `tokio-uring` dependency to `0.3`. [#448]
2323
- Minimum supported Rust version (MSRV) is now 1.49.
2424

2525
[#448]: https://github.com/actix/actix-net/pull/448
2626

27-
## 2.6.0 - 2022-01-12
27+
## 2.6.0
2828

2929
- Update `tokio-uring` dependency to `0.2`. [#436]
3030

3131
[#436]: https://github.com/actix/actix-net/pull/436
3232

33-
## 2.5.1 - 2021-12-31
33+
## 2.5.1
3434

3535
- Expose `System::with_tokio_rt` and `Arbiter::with_tokio_rt`. [#430]
3636

3737
[#430]: https://github.com/actix/actix-net/pull/430
3838

39-
## 2.5.0 - 2021-11-22
39+
## 2.5.0
4040

4141
- Add `System::run_with_code` to allow retrieving the exit code on stop. [#411]
4242

4343
[#411]: https://github.com/actix/actix-net/pull/411
4444

45-
## 2.4.0 - 2021-11-05
45+
## 2.4.0
4646

4747
- Add `Arbiter::try_current` for situations where thread may or may not have Arbiter context. [#408]
4848
- Start io-uring with `System::new` when feature is enabled. [#395]
4949

5050
[#395]: https://github.com/actix/actix-net/pull/395
5151
[#408]: https://github.com/actix/actix-net/pull/408
5252

53-
## 2.3.0 - 2021-10-11
53+
## 2.3.0
5454

5555
- The `spawn` method can now resolve with non-unit outputs. [#369]
5656
- Add experimental (semver-exempt) `io-uring` feature for enabling async file I/O on linux. [#374]
5757

5858
[#369]: https://github.com/actix/actix-net/pull/369
5959
[#374]: https://github.com/actix/actix-net/pull/374
6060

61-
## 2.2.0 - 2021-03-29
61+
## 2.2.0
6262

6363
- **BREAKING** `ActixStream::{poll_read_ready, poll_write_ready}` methods now return `Ready` object in ok variant. [#293]
6464
- Breakage is acceptable since `ActixStream` was not intended to be public.
6565

6666
[#293]: https://github.com/actix/actix-net/pull/293
6767

68-
## 2.1.0 - 2021-02-24
68+
## 2.1.0
6969

7070
- Add `ActixStream` extension trait to include readiness methods. [#276]
7171
- Re-export `tokio::net::TcpSocket` in `net` module [#282]
7272

7373
[#276]: https://github.com/actix/actix-net/pull/276
7474
[#282]: https://github.com/actix/actix-net/pull/282
7575

76-
## 2.0.2 - 2021-02-06
76+
## 2.0.2
7777

7878
- Add `Arbiter::handle` to get a handle of an owned Arbiter. [#274]
7979
- Add `System::try_current` for situations where actix may or may not be running a System. [#275]
8080

8181
[#274]: https://github.com/actix/actix-net/pull/274
8282
[#275]: https://github.com/actix/actix-net/pull/275
8383

84-
## 2.0.1 - 2021-02-06
84+
## 2.0.1
8585

8686
- Expose `JoinError` from Tokio. [#271]
8787

8888
[#271]: https://github.com/actix/actix-net/pull/271
8989

90-
## 2.0.0 - 2021-02-02
90+
## 2.0.0
9191

9292
- Remove all Arbiter-local storage methods. [#262]
9393
- Re-export `tokio::pin`. [#262]
9494

9595
[#262]: https://github.com/actix/actix-net/pull/262
9696

97-
## 2.0.0-beta.3 - 2021-01-31
97+
## 2.0.0-beta.3
9898

9999
- Remove `run_in_tokio`, `attach_to_tokio` and `AsyncSystemRunner`. [#253]
100100
- Return `JoinHandle` from `actix_rt::spawn`. [#253]
@@ -118,14 +118,14 @@
118118
[#256]: https://github.com/actix/actix-net/pull/256
119119
[#257]: https://github.com/actix/actix-net/pull/257
120120

121-
## 2.0.0-beta.2 - 2021-01-09
121+
## 2.0.0-beta.2
122122

123123
- Add `task` mod with re-export of `tokio::task::{spawn_blocking, yield_now, JoinHandle}` [#245]
124124
- Add default "macros" feature to allow faster compile times when using `default-features=false`.
125125

126126
[#245]: https://github.com/actix/actix-net/pull/245
127127

128-
## 2.0.0-beta.1 - 2020-12-28
128+
## 2.0.0-beta.1
129129

130130
- Add `System::attach_to_tokio` method. [#173]
131131
- Update `tokio` dependency to `1.0`. [#236]
@@ -139,13 +139,13 @@
139139
[#207]: https://github.com/actix/actix-net/pull/207
140140
[#236]: https://github.com/actix/actix-net/pull/236
141141

142-
## 1.1.1 - 2020-04-30
142+
## 1.1.1
143143

144144
- Fix memory leak due to [#94] (see [#129] for more detail)
145145

146146
[#129]: https://github.com/actix/actix-net/issues/129
147147

148-
## 1.1.0 - 2020-04-08 _(YANKED)_
148+
## 1.1.0 _(YANKED)_
149149

150150
- Expose `System::is_set` to check if current system has ben started [#99]
151151
- Add `Arbiter::is_running` to check if event loop is running [#124]
@@ -155,57 +155,57 @@
155155
[#99]: https://github.com/actix/actix-net/pull/99
156156
[#124]: https://github.com/actix/actix-net/pull/124
157157

158-
## 1.0.0 - 2019-12-11
158+
## 1.0.0
159159

160160
- Update dependencies
161161

162-
## 1.0.0-alpha.3 - 2019-12-07
162+
## 1.0.0-alpha.3
163163

164164
- Migrate to tokio 0.2
165165
- Fix compilation on non-unix platforms
166166

167-
## 1.0.0-alpha.2 - 2019-12-02
167+
## 1.0.0-alpha.2
168168

169169
- Export `main` and `test` attribute macros
170170
- Export `time` module (re-export of tokio-timer)
171171
- Export `net` module (re-export of tokio-net)
172172

173-
## 1.0.0-alpha.1 - 2019-11-22
173+
## 1.0.0-alpha.1
174174

175175
- Migrate to std::future and tokio 0.2
176176

177-
## 0.2.6 - 2019-11-14
177+
## 0.2.6
178178

179179
- Allow to join arbiter's thread. #60
180180
- Fix arbiter's thread panic message.
181181

182-
## 0.2.5 - 2019-09-02
182+
## 0.2.5
183183

184184
- Add arbiter specific storage
185185

186-
## 0.2.4 - 2019-07-17
186+
## 0.2.4
187187

188188
- Avoid a copy of the Future when initializing the Box. #29
189189

190-
## 0.2.3 - 2019-06-22
190+
## 0.2.3
191191

192192
- Allow to start System using existing CurrentThread Handle #22
193193

194-
## 0.2.2 - 2019-03-28
194+
## 0.2.2
195195

196196
- Moved `blocking` module to `actix-threadpool` crate
197197

198-
## 0.2.1 - 2019-03-11
198+
## 0.2.1
199199

200200
- Added `blocking` module
201201
- Added `Arbiter::exec_fn` - execute fn on the arbiter's thread
202202
- Added `Arbiter::exec` - execute fn on the arbiter's thread and wait result
203203

204-
## 0.2.0 - 2019-03-06
204+
## 0.2.0
205205

206206
- `run` method returns `io::Result<()>`
207207
- Removed `Handle`
208208

209-
## 0.1.0 - 2018-12-09
209+
## 0.1.0
210210

211211
- Initial release

0 commit comments

Comments
 (0)