Skip to content

Commit

Permalink
Bump version to 1.0.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
niranjan94 committed Dec 21, 2016
1 parent 137bd8e commit 75a8d31
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

The Open Event Orga Server enables organizers to manage events from concerts to conferences and meet-ups. It offers features for events with several tracks and venues. Event managers can create invitation forms for speakers and build schedules in a drag and drop interface. The event information is stored in a database. The system provides API endpoints to fetch the data, and to modify and update it. Organizers can import and export event data in a standard compressed file format that includes the event data in JSON and binary media files like images and audio.

[![GitHub release](https://img.shields.io/github/release/fossasia/open-event-orga-server.svg?style=flat-square)](https://github.com/fossasia/open-event-orga-server/releases/latest)
[![Travis branch](https://img.shields.io/travis/fossasia/open-event-orga-server/master.svg?style=flat-square)](https://travis-ci.org/fossasia/open-event-orga-server)
[![Gemnasium](https://img.shields.io/gemnasium/fossasia/open-event-orga-server.svg?style=flat-square)](https://gemnasium.com/github.com/fossasia/open-event-orga-server)
[![Coveralls branch](https://img.shields.io/coveralls/fossasia/open-event-orga-server/master.svg?style=flat-square&label=Coveralls+Coverage)](https://coveralls.io/github/fossasia/open-event-orga-server?branch=master)
Expand Down
3 changes: 3 additions & 0 deletions app/templates/gentelella/admin/super_admin/widgets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
<div class="tab-content">
<div class="tab-pane fade active in" id="upcoming-events-tab">
<div class="row">
<div class="col-md-12 text-center" style="margin-top:-10px; padding-bottom: 16px;">
Version {{ version }}
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
{% if on_kubernetes %}
{% include 'gentelella/admin/super_admin/widgets/_kubernetes.html' %}
Expand Down
3 changes: 2 additions & 1 deletion app/views/super_admin/super_admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from flask import Blueprint
from flask import Blueprint, current_app as app
from flask import render_template

from app.helpers.data_getter import DataGetter
Expand Down Expand Up @@ -72,6 +72,7 @@ def index_view():
commit_number=commit_number,
on_heroku=on_heroku,
on_kubernetes=on_kubernetes,
version=app.config['VERSION'],
pods_info=pods_info,
number_live_events=number_live_events,
number_draft_events=number_draft_events,
Expand Down
3 changes: 0 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"name": "open-event-orga-server",
"version": "0.0.0",
"homepage": "https://github.com/fossasia/open-event-orga-server",
"authors": [],
"description": "Open Event Orga Server",
"main": "",
"moduleType": [
"globals"
],
Expand Down
3 changes: 3 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

basedir = os.path.abspath(os.path.dirname(__file__))

VERSION_NAME = '1.0.0-alpha'

# available languages
LANGUAGES = {
'en': 'English',
Expand All @@ -20,6 +22,7 @@


class Config(object):
VERSION = VERSION_NAME
DEBUG = False
TESTING = False
CSRF_ENABLED = True
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "open-event-orga-server",
"version": "1.0.0",
"description": "[![Build Status](https://travis-ci.org/fossasia/open-event-orga-server.svg?branch=master)](https://travis-ci.org/fossasia/open-event-orga-server)\r [![Dependency Status](https://gemnasium.com/badges/github.com/fossasia/open-event-orga-server.svg)](https://gemnasium.com/github.com/fossasia/open-event-orga-server)\r [![Codacy Badge](https://api.codacy.com/project/badge/Grade/1ac554483fac462797ffa5a8b9adf2fa)](https://www.codacy.com/app/fossasia/open-event-orga-server?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=fossasia/open-event-orga-server&amp;utm_campaign=Badge_Grade)\r [![Issue Count](https://codeclimate.com/github/fossasia/open-event-orga-server/badges/issue_count.svg)](https://codeclimate.com/github/fossasia/open-event-orga-server)\r [![Test Coverage](https://codeclimate.com/github/fossasia/open-event-orga-server/badges/coverage.svg)](https://codeclimate.com/github/fossasia/open-event-orga-server/coverage)\r [![Coverage Status](https://coveralls.io/repos/github/fossasia/open-event-orga-server/badge.svg?branch=master)](https://coveralls.io/github/fossasia/open-event-orga-server?branch=master)\r [![codecov](https://codecov.io/gh/fossasia/open-event-orga-server/branch/master/graph/badge.svg)](https://codecov.io/gh/fossasia/open-event-orga-server)\r [![Gitter](https://badges.gitter.im/fossasia/open-event-orga-server.svg)](https://gitter.im/fossasia/open-event-orga-server?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)",
"description": "Open Event Orga Server ",
"scripts": {
"postinstall": "node node_modules/bower/bin/bower install"
},
Expand All @@ -24,7 +23,6 @@
"app/static/admin/lib"
],
"dependencies": {
"axios": "^0.15.3",
"bower": "^1.7.9"
}
}

0 comments on commit 75a8d31

Please sign in to comment.