Skip to content

Commit fbb53f5

Browse files
committed
format changelogs with prettier
1 parent 9b388a8 commit fbb53f5

File tree

13 files changed

+255
-258
lines changed

13 files changed

+255
-258
lines changed

CODE_OF_CONDUCT.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
88

99
Examples of behavior that contributes to creating a positive environment include:
1010

11-
* Using welcoming and inclusive language
12-
* Being respectful of differing viewpoints and experiences
13-
* Gracefully accepting constructive criticism
14-
* Focusing on what is best for the community
15-
* Showing empathy towards other community members
11+
- Using welcoming and inclusive language
12+
- Being respectful of differing viewpoints and experiences
13+
- Gracefully accepting constructive criticism
14+
- Focusing on what is best for the community
15+
- Showing empathy towards other community members
1616

1717
Examples of unacceptable behavior by participants include:
1818

19-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20-
* Trolling, insulting/derogatory comments, and personal or political attacks
21-
* Public or private harassment
22-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23-
* Other conduct which could reasonably be considered inappropriate in a professional setting
19+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
- Trolling, insulting/derogatory comments, and personal or political attacks
21+
- Public or private harassment
22+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
- Other conduct which could reasonably be considered inappropriate in a professional setting
2424

2525
## Our Responsibilities
2626

@@ -39,7 +39,7 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor
3939
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
4040

4141
[@robjtede]: https://github.com/robjtede
42-
[@JohnTitor]: https://github.com/JohnTitor
42+
[@johntitor]: https://github.com/JohnTitor
4343

4444
## Attribution
4545

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See example folders for [`actix-server`](./actix-server/examples) and [`actix-tl
1313

1414
## MSRV
1515

16-
Most crates in this repo's have a Minimum Supported Rust Version (MSRV) of 1.49.0. Only `actix-tls` and `actix-server` have MSRV of 1.54.0. As a policy, we permit MSRV increases in non-breaking releases.
16+
Crates in this repo currently have a Minimum Supported Rust Version (MSRV) of 1.59. As a policy, we permit MSRV increases in non-breaking releases.
1717

1818
## License
1919

actix-codec/CHANGES.md

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,57 @@
11
# Changes
22

33
## Unreleased - 2022-xx-xx
4-
- Minimum supported Rust version (MSRV) is now 1.59.
54

5+
- Minimum supported Rust version (MSRV) is now 1.59.
66

77
## 0.5.1 - 2022-03-15
8+
89
- Logs emitted now use the `tracing` crate with `log` compatibility. [#451]
910
- Minimum supported Rust version (MSRV) is now 1.49.
1011

1112
[#451]: https://github.com/actix/actix-net/pull/451
1213

13-
1414
## 0.5.0 - 2022-02-15
15+
1516
- Updated `tokio-util` dependency to `0.7.0`. [#446]
1617

1718
[#446]: https://github.com/actix/actix-net/pull/446
1819

19-
2020
## 0.4.2 - 2021-12-31
21-
- No significant changes since `0.4.1`.
2221

22+
- No significant changes since `0.4.1`.
2323

2424
## 0.4.1 - 2021-11-05
25+
2526
- Added `LinesCodec.` [#338]
2627
- `Framed::poll_ready` flushes when the buffer is full. [#409]
2728

2829
[#338]: https://github.com/actix/actix-net/pull/338
2930
[#409]: https://github.com/actix/actix-net/pull/409
3031

31-
3232
## 0.4.0 - 2021-04-20
33-
- No significant changes since v0.4.0-beta.1.
3433

34+
- No significant changes since v0.4.0-beta.1.
3535

3636
## 0.4.0-beta.1 - 2020-12-28
37+
3738
- Replace `pin-project` with `pin-project-lite`. [#237]
3839
- Upgrade `tokio` dependency to `1`. [#237]
3940
- Upgrade `tokio-util` dependency to `0.6`. [#237]
4041
- Upgrade `bytes` dependency to `1`. [#237]
4142

4243
[#237]: https://github.com/actix/actix-net/pull/237
4344

44-
4545
## 0.3.0 - 2020-08-23
46-
- No changes from beta 2.
4746

47+
- No changes from beta 2.
4848

4949
## 0.3.0-beta.2 - 2020-08-19
50-
- Remove unused type parameter from `Framed::replace_codec`.
5150

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

5353
## 0.3.0-beta.1 - 2020-08-19
54+
5455
- Use `.advance()` instead of `.split_to()`.
5556
- Upgrade `tokio-util` to `0.3`.
5657
- Improve `BytesCodec::encode()` performance.
@@ -59,31 +60,31 @@
5960
- Add method on `Framed` to get a pinned reference to the underlying I/O.
6061
- Add method on `Framed` check emptiness of read buffer.
6162

62-
6363
## 0.2.0 - 2019-12-10
64-
- Use specific futures dependencies.
6564

65+
- Use specific futures dependencies.
6666

6767
## 0.2.0-alpha.4
68-
- Fix buffer remaining capacity calculation.
6968

69+
- Fix buffer remaining capacity calculation.
7070

7171
## 0.2.0-alpha.3
72+
7273
- Use tokio 0.2.
7374
- Fix low/high watermark for write/read buffers.
7475

75-
7676
## 0.2.0-alpha.2
77-
- Migrated to `std::future`.
7877

78+
- Migrated to `std::future`.
7979

8080
## 0.1.2 - 2019-03-27
81-
- Added `Framed::map_io()` method.
8281

82+
- Added `Framed::map_io()` method.
8383

8484
## 0.1.1 - 2019-03-06
85-
- Added `FramedParts::with_read_buffer()` method.
8685

86+
- Added `FramedParts::with_read_buffer()` method.
8787

8888
## 0.1.0 - 2018-12-09
89+
8990
- Move codec to separate crate.

actix-macros/CHANGES.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,48 @@
11
# Changes
22

33
## Unreleased - 2022-xx-xx
4-
- Minimum supported Rust version (MSRV) is now 1.59.
54

5+
- Minimum supported Rust version (MSRV) is now 1.59.
66

77
## 0.2.3 - 2021-10-19
8+
89
- Fix test macro in presence of other imports named "test". [#399]
910

1011
[#399]: https://github.com/actix/actix-net/pull/399
1112

12-
1313
## 0.2.2 - 2021-10-14
14+
1415
- Improve error recovery potential when macro input is invalid. [#391]
1516
- Allow custom `System`s on test macro. [#391]
1617

1718
[#391]: https://github.com/actix/actix-net/pull/391
1819

19-
2020
## 0.2.1 - 2021-02-02
21+
2122
- Add optional argument `system` to `main` macro which can be used to specify the path to `actix_rt::System` (useful for re-exports). [#363]
2223

2324
[#363]: https://github.com/actix/actix-net/pull/363
2425

25-
2626
## 0.2.0 - 2021-02-02
27+
2728
- Update to latest `actix_rt::System::new` signature. [#261]
2829

2930
[#261]: https://github.com/actix/actix-net/pull/261
3031

31-
3232
## 0.2.0-beta.1 - 2021-01-09
33+
3334
- Remove `actix-reexport` feature. [#218]
3435

3536
[#218]: https://github.com/actix/actix-net/pull/218
3637

37-
3838
## 0.1.3 - 2020-12-03
39+
3940
- Add `actix-reexport` feature. [#218]
4041

4142
[#218]: https://github.com/actix/actix-net/pull/218
4243

43-
4444
## 0.1.2 - 2020-05-18
45+
4546
- Forward actix_rt::test arguments to test function [#127]
4647

4748
[#127]: https://github.com/actix/actix-net/pull/127

0 commit comments

Comments
 (0)