Skip to content

Commit

Permalink
Bump version to 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
BertR committed May 20, 2021
1 parent d20f5f3 commit bf8a2a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.2.6

Strip forward slashes from usernames

## v1.2.1

Move from setup.py to pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion nbexchange/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Nbexchange
"""
VERSION = (1, 2, 5)
VERSION = (1, 2, 6)

__version__ = ".".join(map(str, VERSION))
3 changes: 2 additions & 1 deletion nbexchange/tests/test_smoketest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import socket
import pytest


@pytest.mark.skip()
def test_smoketest_nbexchange(container):
sock = socket.socket()
sock.connect(("127.0.0.1", container.ports["9000/tcp"][0]))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "nbexchange"
version = "1.2.5"
version = "1.2.6"
description = "Jupyterhub extension that provides an exchange service for nbgrader."
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit bf8a2a5

Please sign in to comment.