Browse Source

Release of version 5.0.0

pull/210/head
Oliverpool 8 years ago
parent
commit
88418158d9
  1. 20
      NEWS.md
  2. 2
      patacrep/__init__.py

20
NEWS.md

@ -1,3 +1,23 @@
# patacrep 5.0.0
* Songbook file
* Default extension is now `.yaml`
* Book options are now specified using the yaml markup
* `cd` behavior changed [#207](https://github.com/patacrep/patacrep/pull/207)
* Song files
* Supported extensions [#174](http://github.com/patacrep/patacrep/pull/174)
* .csg: Chordpro
* .tsg: LaTeX song
* .sg: LaTeX song (unfavored)
* .tis: LaTeX intersong
* `start_echo` is now supported in chordpro songs [#205](https://github.com/patacrep/patacrep/pull/205)
* Add a compilation option `--error` [#195](https://github.com/patacrep/patacrep/pull/195)
* Template files also uses `yaml` markup
# patacrep 4.0.0
* Project management

2
patacrep/__init__.py

@ -11,7 +11,7 @@ if sys.version_info < (3, 3):
sys.exit(1)
# Patacrep version.
__TUPLE_VERSION__ = (4, 0, 0)
__TUPLE_VERSION__ = (5, 0, 0)
__version__ = '.'.join([str(number) for number in __TUPLE_VERSION__])
# Directory containing shared data (default templates, custom LaTeX packages,

Loading…
Cancel
Save