mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-12-04 07:40:34 +00:00
Compare commits
4 Commits
c16b139fa3
...
62db71ae4d
Author | SHA1 | Date | |
---|---|---|---|
62db71ae4d | |||
fff6cad5ac | |||
44e6af8546 | |||
9e2585a875 |
12
CHANGELOG.md
12
CHANGELOG.md
@ -2,6 +2,18 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [0.11.1] - 2024-10-14
|
||||
|
||||
### 🐛 Bug Fixes
|
||||
|
||||
- Support choosing lexers when used as a library
|
||||
|
||||
## [0.11.0] - 2024-10-14
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Support selecting only some themes
|
||||
|
||||
## [0.10.0] - 2024-09-26
|
||||
|
||||
### 🚀 Features
|
||||
|
14
Hacefile.yml
14
Hacefile.yml
@ -121,3 +121,17 @@ tasks:
|
||||
- src
|
||||
commands: |
|
||||
tokei src -e src/constants/
|
||||
|
||||
aur:
|
||||
phony: true
|
||||
always_run: true
|
||||
commands: |
|
||||
rm -rf aur-{{NAME}}
|
||||
git clone ssh://aur@aur.archlinux.org/{{NAME}}.git aur-{{NAME}}
|
||||
sed s/pkgver=.*/pkgver=$(shards version)/ -i aur-{{NAME}}/PKGBUILD
|
||||
sed s/pkgrel=.*/pkgrel=1/ -i aur-{{NAME}}/PKGBUILD
|
||||
cd aur-{{NAME}} && updpkgsums && makepkg --printsrcinfo > .SRCINFO
|
||||
cd aur-{{NAME}} && makepkg -fsr
|
||||
cd aur-{{NAME}} && git add PKGBUILD .SRCINFO
|
||||
cd aur-{{NAME}} && git commit -a -m "Update to $(shards version)"
|
||||
cd aur-{{NAME}} && git push
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: tartrazine
|
||||
version: 0.10.0
|
||||
version: 0.11.1
|
||||
|
||||
authors:
|
||||
- Roberto Alsina <roberto.alsina@gmail.com>
|
||||
|
@ -9,7 +9,7 @@ module Tartrazine
|
||||
|
||||
macro bake_selected_lexers
|
||||
{% for lexer in env("TT_LEXERS").split "," %}
|
||||
bake_file {{ lexer }}+".xml", {{ read_file "lexers/" + lexer + ".xml" }}
|
||||
bake_file {{ lexer }}+".xml", {{ read_file "#{__DIR__}/../lexers/" + lexer + ".xml" }}
|
||||
{% end %}
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user