Skip to content

Commit

Permalink
dev(release): initial minor release (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
eckelsjd authored Dec 13, 2023
1 parent bc91878 commit 8c57ff1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/how-to-guides.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ to `ComponentSpec` and `SystemSurrogate`.

!!! Example
```python
def wrapper_func(x, alpha, *args, output_dir=None, **kwargs):
def wrapper_func(x, *args, alpha=(0,), output_dir=None, **kwargs):
print(x.shape) # (..., x_dim)

# Your code here, for example:
Expand Down
1 change: 0 additions & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
repo.git.checkout('main')
tag_message = sys.argv[1] if len(sys.argv) == 2 else ""
new_tag = repo.create_tag(f'v{amisc.__version__}', message=tag_message)
repo.remotes.origin.push(refspec='main:main')
repo.remotes.origin.push(new_tag)
2 changes: 1 addition & 1 deletion src/amisc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from amisc.interpolator import BaseInterpolator
from amisc.rv import BaseRV

__version__ = "0.0.8"
__version__ = "0.1.1"

# Custom types that are used frequently
IndexSet = list[tuple[tuple, tuple]]
Expand Down

0 comments on commit 8c57ff1

Please sign in to comment.