Changeset - 42a87338035a
[Not reviewed]
default
0 2 1
Marcin Kuzminski - 15 years ago 2010-10-11 13:32:39
marcin@python-works.com
Version bump.
Added changelog into docs.
3 files changed with 13 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
new file 100644
 
.. _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.
docs/index.rst
Show inline comments
 
@@ -95,12 +95,13 @@ Documentation
 

	
 
.. toctree::
 
   :maxdepth: 1
 

	
 
   installation
 
   setup
 
   changelog
 

	
 
Other topics
 
------------
 

	
 
* :ref:`genindex`
 
* :ref:`search`
rhodecode/__init__.py
Show inline comments
 
@@ -21,13 +21,13 @@
 
Created on April 9, 2010
 
RhodeCode, a web based repository management based on pylons
 
versioning implementation: http://semver.org/
 
@author: marcink
 
"""
 

	
 
VERSION = (1, 0, 0, 'rc1')
 
VERSION = (1, 0, 0, 'rc2')
 

	
 
__version__ = '.'.join((str(each) for each in VERSION[:4]))
 

	
 
def get_version():
 
    """
 
    Returns shorter version (digit parts only) as string.
0 comments (0 inline, 0 general)