Skip to content

Commit

Permalink
chore: Bump version to 0.1.1 in CHANGELOG and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandra Irugalbandara committed Jul 28, 2024
1 parent bcdf7f8 commit 91d64a1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RELEASES

## `0.1.0` - 2024-07-28
## `0.1.1` - 2024-07-28
- [INIT] Working Initial Version
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
[![PyPI version](https://badge.fury.io/py/argonauts.svg)](https://badge.fury.io/py/argonauts)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python Versions](https://img.shields.io/pypi/pyversions/argonauts.svg)](https://pypi.org/project/argonauts/)
</div>


---

Argonauts is a Python library that transforms your functions into interactive command-line interfaces with ease. Using simple decorators, you can create engaging CLI experiences without the hassle of manual argument parsing.

![Argonauts Demo](public/demo_0.gif)

</div>

## 🚀 Features

- Transform functions into interactive CLIs with a single decorator
Expand Down Expand Up @@ -79,11 +83,9 @@ def order_pizza(
order_pizza()
```

[GIF placeholder: Show the code snippet side-by-side with a GIF of the resulting interactive CLI]

### Chaining Interactive Functions

Astrolink allows you to chain multiple interactive functions with the ability to share the previous arguments:
Argonauts allows you to chain multiple interactive functions with the ability to share the previous arguments:

```python
from argonauts import argonaut, LogBook
Expand All @@ -110,15 +112,15 @@ def movie_night():
movie_night()
```

[GIF placeholder: Show the code snippet side-by-side with a GIF of the resulting chained interactive CLI]
![Argonauts Demo](public/demo_1.gif)

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for more details.

## 📄 License

Astrolink is released under the MIT License. See the [LICENSE](LICENSE) file for details.
Argonauts is released under the MIT License. See the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgements

Expand Down
Binary file added public/demo_0.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/demo_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "argonauts"
version = "0.1.0"
version = "0.1.1"
description = "Easily convert function to interactive command line applications"
authors = ["Chandra Irugalbandara"]
license = "MIT"
Expand Down

0 comments on commit 91d64a1

Please sign in to comment.