Skip to content

Commit

Permalink
Bump Version 3.1.4 -> 3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Apr 21, 2017
1 parent 9d3aaa9 commit 28e2fe1
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 23 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,15 @@
3.1.5
=====
* Fix websocket send method. . Make it work with tornado 4.5. Fix #97

3.1.4
=====
* Use setuptools to set the __version__. Fix #96

3.1.3
=====
* Don't execute suggestions when timeout is not available (windows/threads) and when it's not asked manually. Should fix #94 or at least work around it.

3.1.2
=====

Expand Down
2 changes: 1 addition & 1 deletion client/setup.py
Expand Up @@ -7,7 +7,7 @@
import sys
from setuptools import setup

__version__ = '3.1.4'
__version__ = '3.1.5'

requires = [
"log_colorizer>=1.8.3",
Expand Down
2 changes: 1 addition & 1 deletion flask_wdb_hook/setup.py
Expand Up @@ -13,7 +13,7 @@
url="http://github.com/Kozea/wdb",
license='GPLv3',
packages=['flask_wdb_hook'],
install_requires=['wdb >= 3.1.4'],
install_requires=['wdb >= 3.1.5'],
data_files=[(site_packages_path, ['flask-wdb.pth'])],
description="Hook to replace flask werkzeug debugger with wdb."
)
2 changes: 1 addition & 1 deletion server/bower.json
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.1.4",
"version": "3.1.5",
"homepage": "https://github.com/Kozea/wdb",
"authors": [
"Florian Mounier <florian.mounier@kozea.fr>"
Expand Down
2 changes: 1 addition & 1 deletion server/coffees/wdb.coffee
Expand Up @@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

class Wdb extends Log
__version__: '3.1.4'
__version__: '3.1.5'

constructor: ->
super
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.1.4",
"version": "3.1.5",
"description": "An improbable python web debugger through WebSockets",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion server/setup.py
Expand Up @@ -7,7 +7,7 @@
import sys
from setuptools import setup

__version__ = '3.1.4'
__version__ = '3.1.5'

requires = [
"wdb==%s" % __version__, "tornado>=4.2",
Expand Down
2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb.js
Expand Up @@ -1330,7 +1330,7 @@ help = "<div class=\"mdl-tabs mdl-js-tabs mdl-js-ripple-effect\">\n <div class=
Wdb = (function(superClass) {
extend(Wdb, superClass);

Wdb.prototype.__version__ = '3.1.4';
Wdb.prototype.__version__ = '3.1.5';

function Wdb() {
Wdb.__super__.constructor.apply(this, arguments);
Expand Down
21 changes: 11 additions & 10 deletions server/wdb_server/static/javascripts/wdb/deps.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions server/wdb_server/static/javascripts/wdb/home.min.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions server/wdb_server/static/javascripts/wdb/wdb.min.js

Large diffs are not rendered by default.

0 comments on commit 28e2fe1

Please sign in to comment.