Version bump for Sass fix (#220)

This commit is contained in:
Andrew Gioia 2023-11-21 15:14:50 -05:00
parent 1a9d0780c6
commit b012e9db0d
No known key found for this signature in database
GPG Key ID: FC09694A000800C8
8 changed files with 13 additions and 9 deletions

View File

@ -11,6 +11,10 @@ All notable changes to this project will be documented in this file.
## Versions ## Versions
### [3.13.1] 2023-11-21 Fixes Sass division syntax
* **Merged:** Fix for Dart Sass 2.0.0 changes to division ([PR #221](https://github.com/andrewgioia/keyrune/pull/221)); thank you [@nogweii](https://github.com/nogweii)
### [3.13.0] 2023-11-21 Lost Caverns of Ixalan sets plus supplementals ### [3.13.0] 2023-11-21 Lost Caverns of Ixalan sets plus supplementals
* **Added:** Lost Caverns of Ixalan (LCI), Lost Caverns of Ixalan Ccmmander (LCC), Jurassic World (REX), and Special Guests (SPG) set symbols added ([#216](https://github.com/andrewgioia/keyrune/issues/216)) * **Added:** Lost Caverns of Ixalan (LCI), Lost Caverns of Ixalan Ccmmander (LCC), Jurassic World (REX), and Special Guests (SPG) set symbols added ([#216](https://github.com/andrewgioia/keyrune/issues/216))

View File

@ -1,4 +1,4 @@
# Keyrune v3.13.0 # Keyrune v3.13.1
## The Magic: the Gathering set symbol font! ## The Magic: the Gathering set symbol font!

View File

@ -1,7 +1,7 @@
{ {
"name": "keyrune", "name": "keyrune",
"homepage": "http://keyrune.andrewgioia.com", "homepage": "http://keyrune.andrewgioia.com",
"version": "3.13.0", "version": "3.13.1",
"authors": [ "authors": [
"Andrew Gioia <andrew@gioia.email>" "Andrew Gioia <andrew@gioia.email>"
], ],

View File

@ -2,8 +2,8 @@
* Global */ * Global */
@font-face { @font-face {
font-family: 'Keyrune'; font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.13.0'); src: url('../fonts/keyrune.eot?v=3.13.1');
src: url('../fonts/keyrune.eot?#iefix&v=3.13.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.13.0') format('woff2'), url('../fonts/keyrune.woff?v=3.13.0') format('woff'), url('../fonts/keyrune.ttf?v=3.13.0') format('truetype'), url('../fonts/keyrune.svg?v=3.13.0#keyrune') format('svg'); src: url('../fonts/keyrune.eot?#iefix&v=3.13.1') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.13.1') format('woff2'), url('../fonts/keyrune.woff?v=3.13.1') format('woff'), url('../fonts/keyrune.ttf?v=3.13.1') format('truetype'), url('../fonts/keyrune.svg?v=3.13.1#keyrune') format('svg');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,6 @@
* Global */ * Global */
@ss-font-path: '../fonts'; @ss-font-path: '../fonts';
@ss-version: '3.13.0'; @ss-version: '3.13.1';
@ss-font-size-base: 14px; @ss-font-size-base: 14px;
@ss-prefix: ss; @ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{ {
"name": "keyrune", "name": "keyrune",
"description": "Keyrune", "description": "Keyrune",
"version": "3.13.0", "version": "3.13.1",
"author": { "author": {
"name": "Andrew Gioia", "name": "Andrew Gioia",
"email": "andrew@gioia.email", "email": "andrew@gioia.email",

View File

@ -1,7 +1,7 @@
/** /**
* Globals */ * Globals */
$keyrune_version: '3.13.0' !default; $keyrune_version: '3.13.1' !default;
$keyrune_font_path: '../fonts' !default; $keyrune_font_path: '../fonts' !default;
// font specific // font specific
@ -492,4 +492,4 @@ $keyrune_sets: (
// display glyph correctly // display glyph correctly
@function ss-content($glyph) { @function ss-content($glyph) {
@return unquote("\"#{$glyph}\""); @return unquote("\"#{$glyph}\"");
} }