Skip to content

Commit

Permalink
Preparing files for release of 0.1
Browse files Browse the repository at this point in the history
Created nice changelog as foundation for new versions (included in manifest), changed version information and there a was missing dependecy in setup.py (weirdly not found by Travis).
  • Loading branch information
MarekSuchanek committed Feb 11, 2017
1 parent f2ec67d commit b532e1e
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Change Log
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.1] - 2017-02-11
### Added
- Web application via Flask and SQLAlchemy
- Simple extensibility with discovery via entrypoints and extension
via calling hooks
- Basic user login/logout via GitHub OAuth
- Custom roles assigned to users (special admin role)
- Public pages for users, organizations and repositories
- Fulltext search for users, organizations and repositories
- Managing own (only personal) GitHub repositories within app
- Listening for webhooks (push, release, repository) and storing information
about repositories to the database
- Repository within app can be public, private or hidden (secret URL)
- Administrator can manage users, repositories, roles and extensions
within administration zone
- Very simple REST API (GET only) via flask-restless
- Commands to create DB, assign role and check/process new repository events
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include LICENSE
include CHANGELOG.md
include setup.cfg
include pytest.ini
include config/*.example.cfg
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1-alpha'
release = '0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion repocribro/repocribro.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#: Name of the application
PROG_NAME = 'repocribro'
#: Actual release tag
RELEASE = '0.1-alpha'
RELEASE = '0.1'
#: Actual version
VERSION = '0.1'

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='repocribro',
version='0.1-alpha',
version='0.1',
keywords='github repositories sieve projects community',
description='Extensible sifting tool for information from GitHub repositories',
long_description=long_description,
Expand Down Expand Up @@ -43,6 +43,7 @@
'flask-sqlalchemy',
'iso8601',
'jinja2',
'pytz',
'requests',
'sqlalchemy',
],
Expand Down

0 comments on commit b532e1e

Please sign in to comment.