Skip to content

Commit 85915d8

Browse files
release: prepare 0.4.5 release
1 parent d87958f commit 85915d8

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
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

328
Fixes builds for dependents that use set `#[cfg(fuzzing)]`

src/acknowledgement/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
/// ```
3333
pub const fn url() -> &'static str {

src/theme/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)