Skip to content

Commit

Permalink
Release: v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andretcarpizo committed Dec 22, 2023
1 parent f067362 commit 787c8e6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.2.1] - 2023-12-22

### Changed

- NfFaQuestionCircle: Change color to Red
- NfFaQuestion: Change color to Red

## [1.2.0] - 2023-12-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "murmur"
version = "1.2.0"
version = "1.2.1"
edition = "2021"
license = "MIT"
description = "This library provides a simple and flexible way to format colored messages with optional `NerdFonts` or `Unicode` icons."
Expand Down
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[env]
VERSION = "1.2.0"
VERSION = "1.2.1"

[tasks.cargo-build-release]
args = [
Expand Down
4 changes: 2 additions & 2 deletions src/icon_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ pub static ICON_MAP: Lazy<Mutex<HashMap<IconKind, (&'static str, &'static str)>>
i_map.insert(IconKind::NfFaRefresh, ("\u{f021} ", CYAN)); // 
i_map.insert(IconKind::NfFaWarning, ("\u{f071} ", YELLOW)); // 
i_map.insert(IconKind::NfFaBug, ("\u{f188} ", RED)); // 
i_map.insert(IconKind::NfFaQuestion, ("\u{f128} ", WHITE)); // 
i_map.insert(IconKind::NfFaQuestionCircle, ("\u{f059} ", WHITE)); // 
i_map.insert(IconKind::NfFaQuestion, ("\u{f128} ", RED)); // 
i_map.insert(IconKind::NfFaQuestionCircle, ("\u{f059} ", RED)); // 
i_map.insert(IconKind::NfFaTerminal, ("\u{f120} ", WHITE)); // 
i_map.insert(IconKind::NfFaTrash, ("\u{f1f8} ", WHITE)); // 
i_map.insert(IconKind::NfFaAngleRight, ("\u{f105} ", WHITE)); // 
Expand Down

0 comments on commit 787c8e6

Please sign in to comment.