Skip to content

Commit

Permalink
Bump version, minor template change
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Jun 27, 2024
1 parent 40140e2 commit 99063d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ We are currently working on porting this changelog to the specifications in
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Version 1.1.1] - Unreleased


## [Version 1.1.0] - Released 2023-08-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmark_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def method2(xparam, yparam, zparam):
'size': ['zparam'],
}
group_labels['hue'] = list(
(ub.oset(basis) - {xlabel}) - set.union(*map(set, group_labels.values())))
(ub.oset(basis) - {xlabel}) - set.union(set(), *map(set, group_labels.values())))
grid_iter = list(ub.named_product(basis))

# For each variation of your experiment, create a row.
Expand Down
2 changes: 1 addition & 1 deletion timerit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
time per loop: best=2.064 ms, mean=2.115 +- 0.05 ms
t1.total_time = 0.4427177629695507
"""
__version__ = '1.1.0'
__version__ = '1.1.1'

import sys
from .core import (Timer, Timerit,)
Expand Down

0 comments on commit 99063d5

Please sign in to comment.