Skip to content

Commit

Permalink
chore(deps): bump derive_more from 0.99 to 1.0 (#211)
Browse files Browse the repository at this point in the history
* chore(deps): bump derive_more from 0.99 to 1.0

* fix ui tests
  • Loading branch information
niklasad1 authored Oct 22, 2024
1 parent ede33c3 commit 6215084
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.11.4] - 2024-10-22
- Bump `derive_more` to version 1.0.0.

## [2.11.3] - 2024-05-08
- Bump `proc-macro-crate` to version 3.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bitvec = { version = "1", default-features = false, features = ["alloc"], option
cfg-if = "1.0"
scale-info-derive = { version = "2.11.3", path = "derive", default-features = false, optional = true }
serde = { version = "1", default-features = false, optional = true, features = ["derive", "alloc"] }
derive_more = { version = "0.99.1", default-features = false, features = ["from"] }
derive_more = { version = "1.0.0", default-features = false, features = ["from"] }
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
schemars = { version = "0.8", optional = true }

Expand Down
16 changes: 8 additions & 8 deletions test_suite/tests/ui/fail_missing_derive.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ error[E0277]: the trait bound `PawType<u16>: TypeInfo` is not satisfied
| ^^^^^^^^^^^^^^^^^^ the trait `TypeInfo` is not implemented for `PawType<u16>`, which is required by `Cat<bool, u8, u16>: TypeInfo`
|
= help: the following other types implement trait `TypeInfo`:
bool
char
i8
i16
i32
i64
i128
u8
&T
&mut T
()
(A, B)
(A, B, C)
(A, B, C, D)
(A, B, C, D, E)
(A, B, C, D, E, F)
and $N others
note: required for `Cat<bool, u8, u16>` to implement `TypeInfo`
--> tests/ui/fail_missing_derive.rs:8:10
Expand Down
16 changes: 8 additions & 8 deletions test_suite/tests/ui/fail_unions.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ error[E0277]: the trait bound `Commonwealth: TypeInfo` is not satisfied
| ^^^^^^^^^^^^ the trait `TypeInfo` is not implemented for `Commonwealth`
|
= help: the following other types implement trait `TypeInfo`:
bool
char
i8
i16
i32
i64
i128
u8
&T
&mut T
()
(A, B)
(A, B, C)
(A, B, C, D)
(A, B, C, D, E)
(A, B, C, D, E, F)
and $N others
note: required by a bound in `assert_type_info`
--> tests/ui/fail_unions.rs:11:24
Expand Down

0 comments on commit 6215084

Please sign in to comment.