Skip to content

Commit

Permalink
format changelogs with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Mar 3, 2023
1 parent 9b388a8 commit fbb53f5
Show file tree
Hide file tree
Showing 13 changed files with 255 additions and 258 deletions.
22 changes: 11 additions & 11 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo

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

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

Examples of unacceptable behavior by participants include:

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

## Our Responsibilities

Expand All @@ -39,7 +39,7 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor
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.

[@robjtede]: https://github.com/robjtede
[@JohnTitor]: https://github.com/JohnTitor
[@johntitor]: https://github.com/JohnTitor

## Attribution

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ See example folders for [`actix-server`](./actix-server/examples) and [`actix-tl

## MSRV

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.
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.

## License

Expand Down
33 changes: 17 additions & 16 deletions actix-codec/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,56 +1,57 @@
# Changes

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

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

## 0.5.1 - 2022-03-15

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

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


## 0.5.0 - 2022-02-15

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

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


## 0.4.2 - 2021-12-31
- No significant changes since `0.4.1`.

- No significant changes since `0.4.1`.

## 0.4.1 - 2021-11-05

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

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


## 0.4.0 - 2021-04-20
- No significant changes since v0.4.0-beta.1.

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

## 0.4.0-beta.1 - 2020-12-28

- Replace `pin-project` with `pin-project-lite`. [#237]
- Upgrade `tokio` dependency to `1`. [#237]
- Upgrade `tokio-util` dependency to `0.6`. [#237]
- Upgrade `bytes` dependency to `1`. [#237]

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


## 0.3.0 - 2020-08-23
- No changes from beta 2.

- No changes from beta 2.

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

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

## 0.3.0-beta.1 - 2020-08-19

- Use `.advance()` instead of `.split_to()`.
- Upgrade `tokio-util` to `0.3`.
- Improve `BytesCodec::encode()` performance.
Expand All @@ -59,31 +60,31 @@
- Add method on `Framed` to get a pinned reference to the underlying I/O.
- Add method on `Framed` check emptiness of read buffer.


## 0.2.0 - 2019-12-10
- Use specific futures dependencies.

- Use specific futures dependencies.

## 0.2.0-alpha.4
- Fix buffer remaining capacity calculation.

- Fix buffer remaining capacity calculation.

## 0.2.0-alpha.3

- Use tokio 0.2.
- Fix low/high watermark for write/read buffers.


## 0.2.0-alpha.2
- Migrated to `std::future`.

- Migrated to `std::future`.

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

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

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

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

## 0.1.0 - 2018-12-09

- Move codec to separate crate.
15 changes: 8 additions & 7 deletions actix-macros/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,48 @@
# Changes

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

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

## 0.2.3 - 2021-10-19

- Fix test macro in presence of other imports named "test". [#399]

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


## 0.2.2 - 2021-10-14

- Improve error recovery potential when macro input is invalid. [#391]
- Allow custom `System`s on test macro. [#391]

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


## 0.2.1 - 2021-02-02

- Add optional argument `system` to `main` macro which can be used to specify the path to `actix_rt::System` (useful for re-exports). [#363]

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


## 0.2.0 - 2021-02-02

- Update to latest `actix_rt::System::new` signature. [#261]

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


## 0.2.0-beta.1 - 2021-01-09

- Remove `actix-reexport` feature. [#218]

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


## 0.1.3 - 2020-12-03

- Add `actix-reexport` feature. [#218]

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


## 0.1.2 - 2020-05-18

- Forward actix_rt::test arguments to test function [#127]

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

0 comments on commit fbb53f5

Please sign in to comment.