Prepare for next release
This commit is contained in:
parent
4480ecc577
commit
6014618f2d
@ -1,3 +1,5 @@
|
|||||||
|
2.6
|
||||||
|
|
||||||
2.5
|
2.5
|
||||||
- Add new class of tests for queries that are supposed to fail
|
- Add new class of tests for queries that are supposed to fail
|
||||||
- Changes to make failures in commutative operators commutative too
|
- Changes to make failures in commutative operators commutative too
|
||||||
|
@ -12,7 +12,7 @@ def m(request, *args, **kwargs):
|
|||||||
@application.route("/version/<id>")
|
@application.route("/version/<id>")
|
||||||
def show_version(request, *args, **kwargs):
|
def show_version(request, *args, **kwargs):
|
||||||
if kwargs["id"] == "relational":
|
if kwargs["id"] == "relational":
|
||||||
return "2.5"
|
return "2.6"
|
||||||
return "No version"
|
return "No version"
|
||||||
|
|
||||||
@application.route('/feedback/<id>')
|
@application.route('/feedback/<id>')
|
||||||
|
@ -22,7 +22,7 @@ import os
|
|||||||
import os.path
|
import os.path
|
||||||
import getopt
|
import getopt
|
||||||
|
|
||||||
version = "2.5"
|
version = "2.6"
|
||||||
|
|
||||||
|
|
||||||
def printver(exit=True):
|
def printver(exit=True):
|
||||||
|
@ -20,7 +20,7 @@ from distutils.core import setup
|
|||||||
|
|
||||||
def c_setup(name):
|
def c_setup(name):
|
||||||
setup(
|
setup(
|
||||||
version='2.5',
|
version='2.6',
|
||||||
name=name,
|
name=name,
|
||||||
packages=(name,),
|
packages=(name,),
|
||||||
author="Salvo 'LtWorf' Tomaselli",
|
author="Salvo 'LtWorf' Tomaselli",
|
||||||
|
@ -53,5 +53,5 @@ setup(
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
name="Relational",
|
name="Relational",
|
||||||
version="2.5",
|
version="2.6",
|
||||||
)
|
)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||||
AppId={{6F127615-6AD4-4BD7-8135-2444A335B5CD}
|
AppId={{6F127615-6AD4-4BD7-8135-2444A335B5CD}
|
||||||
AppName=Relational
|
AppName=Relational
|
||||||
AppVerName=Relational ver. 2.5
|
AppVerName=Relational ver. 2.6
|
||||||
AppPublisher=Salvo 'LtWorf' Tomaselli
|
AppPublisher=Salvo 'LtWorf' Tomaselli
|
||||||
AppPublisherURL=http://ltworf.github.io/relational/
|
AppPublisherURL=http://ltworf.github.io/relational/
|
||||||
AppSupportURL=http://ltworf.github.io/relational/
|
AppSupportURL=http://ltworf.github.io/relational/
|
||||||
|
Loading…
Reference in New Issue
Block a user