Skip to content

Commit

Permalink
added changelog, fixed typo in readme, updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
alchrabas committed Jan 28, 2016
1 parent 2868cfb commit 57b62d8
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ These two forms are sufficient for English, but for many other languages
it's not enough. For example words can have different suffixes when
there's a few of them and there's many of them. In Polish there are
three possibilities: singular (1), a few (2, 3, 4, 102, 103, 104...) and
many (all the rest). The word "kwiat*ka*" (genitive form of "kwiat*ek*"
many (all the rest). The word "kwiat**ka**" (genitive form of "kwiat**ek**"
["a flower"]) has the following plural forms: "kwiatka", "kwiatki",
"kwiatków".

Expand Down
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. _changelog:

What's new? Changelog
=====================

version 1.1 [2016-01-27]:

- result of custom functions will no longer be interpreted implicitly
- lexer bugfix for strings ending with "$" or "%"

version 1.0 [2015-12-18]:

- fully working code and documentation
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import sys
import os
import pyslate

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -55,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = pyslate.__version__
# The full version, including alpha/beta/rc tags.
release = '1.0'
release = pyslate.__version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Pyslate
user-reference
api
advanced-examples
changelog

Indices and tables
==================
Expand Down
2 changes: 1 addition & 1 deletion pyslate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ['config', 'parser', 'pyslate']

__version__ = '1.0'
__version__ = '1.1'

0 comments on commit 57b62d8

Please sign in to comment.