David Tolnay
f79a85f72b
Release 1.0.17
2020-05-12 22:47:13 -07:00
David Tolnay
186509da2a
Remove CI badge from Cargo.toml
...
Support for badges has been deprecated by crates.io.
2020-05-01 21:07:16 -07:00
David Tolnay
94e62a81bc
Release 1.0.16
2020-04-27 15:53:18 -07:00
David Tolnay
85b0944eac
Reject transparent attr in field attribute position
2020-04-27 15:48:44 -07:00
David Tolnay
d8d55e6655
Release 1.0.15
2020-04-11 11:37:53 -07:00
David Tolnay
4885372ced
Improve span of missing Display impl error
2020-04-11 10:34:26 -07:00
David Tolnay
6fd4059298
Release 1.0.14
2020-03-29 08:47:11 -07:00
David Tolnay
33166f7af4
Allow matches to refer to deprecated variants
2020-03-29 08:42:11 -07:00
David Tolnay
14b54d2256
Release 1.0.13
2020-03-22 23:10:43 -07:00
David Tolnay
1b40434034
Fix missing comma between named format elements
2020-03-22 23:10:01 -07:00
David Tolnay
e160f5d908
Release 1.0.12
2020-03-20 22:50:36 -07:00
David Tolnay
a1ae05c954
Add error message for non-static source
2020-03-20 22:39:18 -07:00
David Tolnay
db357fac83
Select a single docs.rs build target
2020-03-17 13:27:37 -07:00
David Tolnay
55d6fbb460
Release 1.0.11
2020-02-14 11:12:23 -08:00
David Tolnay
0856edd777
Link license files into impl subcrate
2020-02-14 11:11:30 -08:00
David Tolnay
ccbb2ab862
Release 1.0.10
2020-01-28 11:51:27 -08:00
David Tolnay
5e6ebafd8b
Parse .0 fmt arguments in all valid places
2020-01-28 11:39:52 -08:00
David Tolnay
5f36dac9b2
Display a Travis badge on crates.io
2019-12-24 20:57:05 -05:00
David Tolnay
1d0b3999af
Release 1.0.9
2019-12-03 19:35:44 -08:00
David Tolnay
20202db299
Remove incorrect detection of simple fmt cases
...
This was intended to detect the simple cases "{var}" and "{var:?}" and emit them
as straightforward Display::fmt and Debug::fmt method calls rather than a write
macro, but this was only to keep the generated code simple and is not important.
It was broken by the changes to how we parse the fmt attr in 1.0.7.
Fixes #53 .
2019-12-03 19:33:17 -08:00
David Tolnay
d53be52a3b
Release 1.0.8
2019-12-03 10:21:28 -08:00
David Tolnay
79b740e3d7
Release 1.0.7
2019-12-03 09:51:30 -08:00
David Tolnay
c3da1630d3
Expand transparent attribute
2019-11-30 21:59:26 -08:00
David Tolnay
7672b1eccd
Validate transparent attribute
2019-11-30 21:49:46 -08:00
David Tolnay
e38d6bd1a5
Parse transparent attribute
2019-11-30 19:21:59 -08:00
David Tolnay
c3043a1890
Make function for error attribute parsing
...
In preparation for introducing an #[error(transparent)] version of the
attribute.
2019-11-30 19:00:47 -08:00
David Tolnay
038b8d5534
Defer handling of trailing comma in display attribute
...
The previous implementation would have silently accepted invalid input
such as:
#[derive(Error, Debug)]
#[error("",,)]
pub struct Error;
2019-11-30 18:42:38 -08:00
David Tolnay
a96068939b
Accommodate trailing comma in shorthand expansion
2019-11-30 18:36:22 -08:00
David Tolnay
26fe392262
Only apply int shorthand for tuple fields that exist
2019-11-30 18:32:43 -08:00
David Tolnay
c05e9ed4ec
Support mixing shorthand and non-shorthand format args
2019-11-30 17:45:44 -08:00
David Tolnay
6dddf44493
Simplify with Index's new IdentFragment impl
2019-11-30 17:08:54 -08:00
David Tolnay
7f8b5784cb
Support referring to statics and consts from shorthand
2019-11-30 16:30:04 -08:00
David Tolnay
6b6857ba89
Pass field list into expand_shorthand
2019-11-30 16:25:41 -08:00
David Tolnay
886baece01
Defer expansion of fmt shorthand
...
This will make it possible to distinguish between our expansion
heuristic for tuple vs struct variants, as well as local fields vs
statics.
2019-11-30 16:25:40 -08:00
David Tolnay
bfc7f8a4b1
Remove shorthand test superseded by integration tests
...
This is sufficiently well covered by test_display.rs and test_path.rs.
2019-11-30 16:25:10 -08:00
David Tolnay
f866fa9a71
Suppress range_plus_one lint
...
I find this easier to understand in combination with the line right
after.
2019-11-30 00:51:42 -08:00
David Tolnay
938bcec8f9
Release 1.0.6
2019-11-18 23:21:55 -08:00
David Tolnay
eb052728d4
Ignore a new clippy lint
2019-11-13 11:22:17 -08:00
David Tolnay
10b8e5817a
Release 1.0.5
2019-11-09 18:40:32 -08:00
David Tolnay
72cb53e1c7
Support interpolating paths as if they had a Display impl
2019-11-09 16:27:22 -08:00
David Tolnay
e6762d9440
Fill in missing fields of thiserror-impl unit test
2019-11-09 16:24:43 -08:00
David Tolnay
507914148a
Release 1.0.4
2019-10-27 08:19:19 -07:00
David Tolnay
12404e42a5
Merge pull request 36 from mathstuf:formatter-name-collision
2019-10-27 08:18:28 -07:00
Ben Boeckel
5ae5b4e60e
display: avoid using formatter
...
This can collide with enum variant field names. Namespace with a
`_thiserror_` prefix to avoid such collisions.
2019-10-27 02:57:24 -04:00
David Tolnay
b2b3bae1db
Release 1.0.3
2019-10-19 08:56:47 -04:00
David Tolnay
7460283927
Allow ident containing number
...
Fixes #34 .
2019-10-19 08:55:58 -04:00
David Tolnay
ee864e1641
Release 1.0.2
2019-10-12 18:19:41 -07:00
David Tolnay
46de723f20
Support backtrace in From impl
2019-10-12 18:08:20 -07:00
David Tolnay
0e8d1baa69
Detect extraneous fields before generating From
2019-10-12 17:55:29 -07:00
David Tolnay
2492735b67
Detect multiple variants having same From type
2019-10-12 17:55:29 -07:00