Skip to content

Commit

Permalink
Bump Version 3.2.5 -> 3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Jul 5, 2019
1 parent b0f4ccb commit 69567ae
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from setuptools import setup

__version__ = '3.2.5'
__version__ = '3.2.6'

requires = [
"log_colorizer>=1.8.3",
Expand Down
2 changes: 1 addition & 1 deletion flask_wdb_hook/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
url="http://github.com/Kozea/wdb",
license='GPLv3',
packages=[],
install_requires=['wdb >= 3.2.5'],
install_requires=['wdb >= 3.2.6'],
data_files=[(site_packages_path, ['flask-wdb.pth'])],
description="Hook to replace flask werkzeug debugger with wdb.",
)
6 changes: 4 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ git ls-files | grep -E ".+\.coffee|.+\.json|.+\.py" | xargs sed -i -e "s/$OLD_VE
pushd server
grunt
# python setup.py sdist bdist_wheel --universal --plat-name=linux-x86_64 upload
python setup.py sdist upload
python setup.py sdist
twine upload dist/*
popd

pushd client
# python setup.py sdist bdist_wheel --universal --plat-name=linux-x86_64 upload
python setup.py sdist upload
python setup.py sdist
twine upload dist/*
popd

sed -i "s/$OLD_VERSION/$NEW_VERSION/g" server/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3

ARG WDB_VERSION="3.2.5"
ARG WDB_VERSION="3.2.6"

RUN pip install wdb.server==$WDB_VERSION
EXPOSE 19840
Expand Down
2 changes: 1 addition & 1 deletion server/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.2.5",
"version": "3.2.6",
"homepage": "https://github.com/Kozea/wdb",
"authors": [
"Florian Mounier <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion server/coffees/wdb.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

class Wdb extends Log
__version__: '3.2.5'
__version__: '3.2.6'

constructor: ->
super
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.2.5",
"version": "3.2.6",
"description": "An improbable python web debugger through WebSockets",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from setuptools import setup

__version__ = '3.2.5'
__version__ = '3.2.6'

requires = [
"wdb==%s" % __version__,
Expand Down
2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb.js
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,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.2.5';
Wdb.prototype.__version__ = '3.2.6';

function Wdb() {
Wdb.__super__.constructor.apply(this, arguments);
Expand Down
2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb/deps.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb/home.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Large diffs are not rendered by default.

0 comments on commit 69567ae

Please sign in to comment.