Skip to content

Commit 75a8d31

Browse files
committed
Bump version to 1.0.0-alpha
1 parent 137bd8e commit 75a8d31

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
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.
44

5+
[![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)
56
[![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)
67
[![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)
78
[![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)

app/templates/gentelella/admin/super_admin/widgets/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
<div class="tab-content">
1414
<div class="tab-pane fade active in" id="upcoming-events-tab">
1515
<div class="row">
16+
<div class="col-md-12 text-center" style="margin-top:-10px; padding-bottom: 16px;">
17+
Version {{ version }}
18+
</div>
1619
<div class="col-md-4 col-sm-4 col-xs-12">
1720
{% if on_kubernetes %}
1821
{% include 'gentelella/admin/super_admin/widgets/_kubernetes.html' %}

app/views/super_admin/super_admin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
from flask import Blueprint
3+
from flask import Blueprint, current_app as app
44
from flask import render_template
55

66
from app.helpers.data_getter import DataGetter
@@ -72,6 +72,7 @@ def index_view():
7272
commit_number=commit_number,
7373
on_heroku=on_heroku,
7474
on_kubernetes=on_kubernetes,
75+
version=app.config['VERSION'],
7576
pods_info=pods_info,
7677
number_live_events=number_live_events,
7778
number_draft_events=number_draft_events,

bower.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"name": "open-event-orga-server",
3-
"version": "0.0.0",
43
"homepage": "https://github.com/fossasia/open-event-orga-server",
5-
"authors": [],
64
"description": "Open Event Orga Server",
7-
"main": "",
85
"moduleType": [
96
"globals"
107
],

config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

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

6+
VERSION_NAME = '1.0.0-alpha'
7+
68
# available languages
79
LANGUAGES = {
810
'en': 'English',
@@ -20,6 +22,7 @@
2022

2123

2224
class Config(object):
25+
VERSION = VERSION_NAME
2326
DEBUG = False
2427
TESTING = False
2528
CSRF_ENABLED = True

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "open-event-orga-server",
3-
"version": "1.0.0",
4-
"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)",
3+
"description": "Open Event Orga Server ",
54
"scripts": {
65
"postinstall": "node node_modules/bower/bin/bower install"
76
},
@@ -24,7 +23,6 @@
2423
"app/static/admin/lib"
2524
],
2625
"dependencies": {
27-
"axios": "^0.15.3",
2826
"bower": "^1.7.9"
2927
}
3028
}

0 commit comments

Comments
 (0)