File tree Expand file tree Collapse file tree 3 files changed +28
-3
lines changed
Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 1+ # Version 0.4.5 | 2025-12-08
2+
3+ Just a couple of deprecations in preparation for the upcoming ` 0.5.0 ` release
4+
5+ ## Refactor
6+
7+ - Move ` two_face::acknowledgement_url() ` to ` two_face::acknowledgement::url() ` #143
8+
9+ ## Docs
10+
11+ - Deprecate ` EmbeddedThemeName::VisualStudioDarkPlus ` for removal in the next release #144
12+
13+ # Version 0.4.4
14+
15+ This update includes the underlying update to
` [email protected] ` which adds
16+ support for ` LiveScript ` and ` Sass ` when using the ` fancy-regex ` backend.
17+
18+ ## Deps
19+
20+ - Update outdated dependencies #131
21+
22+ ## Internal
23+
24+ - Depend on ` serde ` and ` serde_derive ` separately #107
25+
126# Version 0.4.3
227
328Fixes builds for dependents that use set ` #[cfg(fuzzing)] `
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ pub fn listing() -> Acknowledgements {
2727/// ```
2828/// assert_eq!(
2929/// two_face::acknowledgement::url(),
30- /// "https://github.com/CosmicHorrorDev/two-face/blob/v0.4.4 /generated/acknowledgements_full.md"
30+ /// "https://github.com/CosmicHorrorDev/two-face/blob/v0.5.0-rc1 /generated/acknowledgements_full.md"
3131/// );
3232/// ```
3333pub const fn url ( ) -> & ' static str {
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl EmbeddedLazyThemeSet {
108108 EmbeddedThemeName :: SolarizedLight ,
109109 EmbeddedThemeName :: SublimeSnazzy ,
110110 EmbeddedThemeName :: TwoDark ,
111- #[ expect ( deprecated) ]
111+ #[ allow ( deprecated) ]
112112 EmbeddedThemeName :: VisualStudioDarkPlus ,
113113 EmbeddedThemeName :: Zenburn ,
114114 ]
@@ -462,7 +462,7 @@ impl EmbeddedThemeName {
462462 Self :: SolarizedLight => "Solarized (light)" ,
463463 Self :: SublimeSnazzy => "Sublime Snazzy" ,
464464 Self :: TwoDark => "TwoDark" ,
465- #[ expect ( deprecated) ]
465+ #[ allow ( deprecated) ]
466466 Self :: VisualStudioDarkPlus => "Visual Studio Dark+" ,
467467 Self :: Zenburn => "zenburn" ,
468468 }
You can’t perform that action at this time.
0 commit comments