Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start branch for dev/1.1.6 #156

Merged
merged 3 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
* Fixed passing of `flags` as keyword argument to `re.sub` for python 3.13 compliance.


## Version 1.1.5 - Released 2024-06-08
## Version 1.1.5 - Released 2024-06-07

### Changed
* Minor modification to `xdoctest --version-info` and exposed it in CLI help.

### Fixed
* `ub.modname_to_modpath` fixed in cases where editable installs use type annotations in their MAPPING definition.
* `modname_to_modpath` fixed in cases where editable installs use type annotations in their MAPPING definition.


## Version 1.1.4 - Released 2024-05-31
Expand Down
5 changes: 5 additions & 0 deletions dev/maintain/port_ubelt_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
"""
Statically ports utilities from ubelt needed by xdoctest.

Similar Scripts:
~/code/xdoctest/dev/maintain/port_ubelt_utils.py
~/code/mkinit/dev/maintain/port_ubelt_code.py
~/code/line_profiler/dev/maintain/port_utilities.py
"""


Expand Down
2 changes: 1 addition & 1 deletion src/xdoctest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def fib(n):
mkinit xdoctest --nomods
'''

__version__ = '1.1.5'
__version__ = '1.1.6'


# Expose only select submodules
Expand Down
Loading