Skip to content

Commit 73c0d64

Browse files
author
jacook
committed
bump to 0.3
1 parent 09117ee commit 73c0d64

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,20 @@ Running Genesis from this Github repo is advised ONLY for development purposes.
1515
For information on developing plugins for use with Genesis, see the development centre on https://arkos.io. Specifically:
1616

1717
* [Plugin Structure](http://arkos.io/dev/genesis/plugstruct) - Getting started with writing Genesis plugins
18-
* [Plugin Reference](http://arkos.io/dev/genesis/plugref) - Important classes and functions for writing plugins
18+
* [Webapps and Databases API](http://arkos.io/dev/genesis/wadapi) - Including a new webapp or database type for installation in Genesis
1919
* [User Interface](http://arkos.io/dev/genesis/ux) - How to write a user interface compatible with Genesis' UX system
20-
* [API Reference](http://arkos.io/dev/genesis/api) - The big book of all classes and functions
20+
* [Icon Reference](http://arkos.io/dev/genesis/iconref) - Choosing iconfont classes to use in your plugins
21+
* [General API Reference](http://arkos.io/dev/genesis/api) - The big book of all classes and functions
2122

2223
Once you have a plugin, feel free to let @jacook know and testing can be arranged. If the plugin works well and contributes to arkOS' mission, it may then be included in the central plugin repository.
2324

2425

2526
## Acknowledgments
26-
arkOS Project Contributors:
27+
Genesis is developed by:
2728
* Jacob Cook @jacook
29+
30+
With a big thanks to those who have made contributions!
2831
* AJ Bahnken @ajvb
32+
* Timothy Farrell @explorigin
2933

3034
This project was forked from Ajenti, an excellent server management framework by @Eugeny located here: https://github.com/Eugeny/ajenti.

genesis/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def version():
66
:returns: str
77
"""
88

9-
release = '0.2.3'
9+
release = '0.3'
1010
p = subprocess.Popen('git describe --tags 2> /dev/null',
1111
shell=True,
1212
stdout=subprocess.PIPE)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='genesis',
8-
version='0.2.3',
8+
version='0.3',
99
install_requires=[
1010
'pyOpenSSL',
1111
'gevent',

0 commit comments

Comments
 (0)