Skip to content

Commit

Permalink
[ci] Bump release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Finii authored and github-actions[bot] committed Apr 12, 2024
1 parent 3a26325 commit 6fa413d
Show file tree
Hide file tree
Showing 31 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion bin/scripts/archive-font-patcher.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
# Archives the font patcher script and the required source files
# If some (any) argument is given this is though of as intermediate version
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/archive-fonts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.2.0
# Iterates over all patched fonts directories
# to generate release archives of the patched font(s)
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/fetch-archives.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 2.0.1
#
# Fetches the current release files.
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-casks.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 2.2.3
#
# Iterates over all [*] archived fonts
Expand All @@ -24,7 +24,7 @@
# set -x
set -e

version="3.2.0"
version="3.2.1"
homepage="https://github.com/ryanoasis/nerd-fonts"
downloadarchive="https://github.com/ryanoasis/nerd-fonts/releases/download/v#{version}/"
LINE_PREFIX="# [Nerd Fonts] "
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-css.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.2.1
# Generates CSS file for the font and cheat sheet code

Expand All @@ -22,7 +22,7 @@ cheat_sheet_head_file="./data/cheatsheet-head.txt"
cheat_sheet_foot_file="./data/cheatsheet-foot.txt"

LINE_PREFIX="# [Nerd Fonts] "
version="3.2.0"
version="3.2.1"

# clear files
true > "$output_css_file" 2> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-extraglyphs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
# Generates extrasymbols.sfd from Hack

Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-font-image-previews.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.2.3
# Create font previews.
# All fonts need to be installed (or no preview is generated)
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-fontconfig.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.2
# Iterates over all patched fonts directories
# to generate a fontconfig based on the Nerd Fonts Symbols font
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-glyph-info-from-set.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env python3
# coding=utf8
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.3.0

# Example Usage:
# ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesignicons-webfont.ttf --start f001 --end f847 --offset 4ff --prefix mdi
# ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesign/*.ttf --start f0001 --end f1af0 --offset 0 --prefix md
# ./generate-glyph-info-from-set.py --font ../../src/glyphs/weathericons-regular-webfont.ttf --start f000 --end f0eb --negoffset d00 --prefix weather --nogaps

version = "3.2.0"
version = "3.2.1"

import sys
import re
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-original-source.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.1
# Generates original-source.otf from individual glyphs
#
Expand All @@ -12,7 +12,7 @@
import psMat

# Double-quotes required here, for version-bump.sh:
version = "3.2.0"
version = "3.2.1"

start_codepoint = 0xE4FA # with shift this is 0xE5FA
end_codepoint = 0xE5FF # Next set starts at 0xE700 - 0x0100 shift = 0xE600
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-sample-set.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.1
# Create one sample of each font

Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-webfonts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
# Generates web fonts for the website and cheat sheet

Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/get-font-names-from-json.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
# Gets all the font folder names to build the matrix for the github actions

Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/gotta-patch-em-all-font-patcher!.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.4.5
#
# You can supply options to the font-patcher via environment variable NERDFONTS
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_all.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version 1.3.0

# Usually this is called without argument. If the first argument
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_fa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Font Awesome (version 6.5.1, 1475 icons, 342 aliases)
# Does not include all icons of the release
# Codepoints: ED00-F2FF with gaps
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: (autogenerated)
test -n "$__i_fa_loaded" && return || __i_fa_loaded=1
i='' i_fa_location_dot=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_logos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Font Logos (Font Linux) 1.1.1 (118 icons)
# Codepoints: F300-F375
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.2.0
# We keep the name 'linux' in the metadata for continuity reasons
test -n "$__i_linux_loaded" && return || __i_linux_loaded=1
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_material.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# Material Design Icons (legacy) (2,119 icons)
# Codepoints: F001-F847, Nerd Fonts moved F500-FD46
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version 1.0.0
test -n "$__i_mdi_loaded" && return || __i_mdi_loaded=1
i='' i_mdi_vector_square=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_md.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Material Design Icons (6,896 icons)
# Codepoints: F0001-F1AF0
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version 1.0.1
test -n "$__i_md_loaded" && return || __i_md_loaded=1
i='󰀁' i_md_vector_square=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_oct.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Octicons (310 icons)
# Codepoints: 2665-F533 with gaps
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: (autogenerated)
test -n "$__i_oct_loaded" && return || __i_oct_loaded=1
i='' i_oct_heart=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_seti.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Seti-UI + Custom (188 icons, 18 aliases)
# Codepoints: E5FA-E6B5
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: (autogenerated)
test -n "$__i_seti_loaded" && return || __i_seti_loaded=1
i='' i_custom_folder_npm=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_weather.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Weather Icons 1.100 (228 icons)
# Codepoints: F000-F0EB (with holes), Nerd Fonts moved E300-E3E3
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version 1.0.2
test -n "$__i_weather_loaded" && return || __i_weather_loaded=1
i='' i_weather_day_cloudy_gusts=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/optimize-original-source.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.1

set -e
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# calls the necessary scripts in the necessary order to prepare for a release
#
# This is not used for production
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/standardize-and-complete-readmes.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.4
# Iterates over all patched fonts directories
# converts all non markdown readmes to markdown (e.g., txt, rst) using pandoc
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/test-fonts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.1

# Run this script in your local bash:
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/test-powerlines.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.3.1

# Give any parameter to allow some glyphs to be 2 'cells' wide.
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/test-vertical-lines.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.1.0
#
# A more conceise version of the Powerline test, designed to show
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/update-gitignore.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.0
#
# Edits the repo's .gitignore to prevent patched font artifacts
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/version-bump.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script Version: 1.0.3
# bump version number for release in scripts (bash and python)
# does not do semver format checking
Expand Down
4 changes: 2 additions & 2 deletions font-patcher
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env python
# coding=utf8
# Nerd Fonts Version: 3.2.0
# Nerd Fonts Version: 3.2.1
# Script version is further down

from __future__ import absolute_import, print_function, unicode_literals

# Change the script version when you edit this script:
script_version = "4.13.1"

version = "3.2.0"
version = "3.2.1"
projectName = "Nerd Fonts"
projectNameAbbreviation = "NF"
projectNameSingular = projectName[:-1]
Expand Down

0 comments on commit 6fa413d

Please sign in to comment.