Skip to content

Commit

Permalink
bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsuo Ishimoto committed Jan 1, 2014
1 parent b43d279 commit 57c826f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
16 changes: 13 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -776,14 +776,24 @@ Version history
=================


0.29.0 - 2013.12.31
0.30.0 - 2014.1.1
--------------------

- Check for new release of kaa.
- Fix error on reloading modified file.

- Highlight decorator in Python mode.

- Version check was failed.

Past versions
--------------

0.29.0 - 2013.12.31
+++++++++++++++++++++

- Check for new release of kaa.


0.28.0 - 2013.12.31
+++++++++++++++++++++

Expand Down Expand Up @@ -1113,7 +1123,7 @@ Past versions
Copyright
=========================

Copyright (c) 2013 Atsuo Ishimoto
Copyright (c) 2013, 2014 Atsuo Ishimoto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions kaa/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ def command(commandid, filetype=None):
pass


#styledef(filetype='kaa.filetype.python', theme='basic', [
#style_def(filetype='kaa.filetype.python', theme='basic', [
# Sytle('default', 'white', 'black'),
#])

def styledef(filetype, theme, styles):
def style_def(filetype, theme, styles):
pass

# addfiletype('my.python.filetype',
# add_filetype('my.python.filetype',
# overrides='kaa.filetype.python')

4 changes: 2 additions & 2 deletions kaa/version.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sys
import os
KAA_VERSION = (0, 29, 0)
KAA_VERSION = (0, 30, 0)


def version_info():
return '''\
Kaa {major}.{minor}.{micro}
Copyright (c) 2013 Atsuo Ishimoto.
Copyright (c) 2013, 2014 Atsuo Ishimoto.
All Rights Reserved.
Python version: {python_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def read(fname):
setup(
cmdclass = cmdclass,
name = "kaaedit",
version = "0.29.0",
version = "0.30.0",
description='kaa - console text editor.',
url='https://github.com/kaaedit/kaa',
author='Atsuo Ishimoto',
Expand Down

0 comments on commit 57c826f

Please sign in to comment.