diff --git a/docs/changelog.rst b/docs/changelog.rst new file mode 100644 --- /dev/null +++ b/docs/changelog.rst @@ -0,0 +1,11 @@ +.. _changelog: + +Changelog +========= + + +1.0.0rc2 (**tip**) + +- Disabled dirsize in file browser, it's causing nasty bug when dir renames + occure. After vcs is fixed it'll be put back again. +- templating/css rewrites, optimized css. diff --git a/docs/index.rst b/docs/index.rst --- a/docs/index.rst +++ b/docs/index.rst @@ -98,6 +98,7 @@ Documentation installation setup + changelog Other topics ------------ diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py --- a/rhodecode/__init__.py +++ b/rhodecode/__init__.py @@ -24,7 +24,7 @@ versioning implementation: http://semver @author: marcink """ -VERSION = (1, 0, 0, 'rc1') +VERSION = (1, 0, 0, 'rc2') __version__ = '.'.join((str(each) for each in VERSION[:4]))