Skip to content

Commit

Permalink
Bump version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zain-Imdad committed Feb 3, 2025
1 parent 1a691d6 commit 0053450
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 10 deletions.
12 changes: 10 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Description
<!-- Provide a brief description of your changes -->
## Summary of Changes
<!-- List the files you've changed and provide a brief summary of the changes for each -->

### Files Changed
- `file1.py`
- Change description 1
- Change description 2
- `file2.py`
- Change description 1
- Change description 2

## Related Issue
<!-- Link to the issue this PR addresses using #issue-number -->
Expand Down
4 changes: 3 additions & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ when an individual is officially representing the community in public spaces.
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement through:
- Discord: Contact moderators directly or use the #report channel
- Email: [[email protected]](mailto:[email protected])
- Email:
- [[email protected]](mailto:[email protected])
- [[email protected]](mailto:[email protected])
- GitHub: Open an issue marked [COC]

All complaints will be reviewed and investigated promptly and fairly.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Hayden Smith, LLMP
Copyright (c) 2025 Hayden Smith, Zain Imdad, LLMP

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Legion is a flexible and provider-agnostic framework designed to simplify the cr
## Installation (WIP, not yet available during pre-release phase)

```bash
pip install legion
pip install legion-ai
```

## Core Concepts
Expand Down Expand Up @@ -367,6 +367,11 @@ Eventually, there will be a more comprehensive documentation site.

Contributions are welcome! Please feel free to submit pull requests, report issues, or suggest new features.

## Authors

- Hayden Smith ([email protected])
- Zain Imdad ([email protected])

## Project Status & Roadmap

View the [Legion Project Board](https://github.com/orgs/LLMP-io/projects/1/views/1) for the current status of the project.
Expand Down
2 changes: 1 addition & 1 deletion legion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Legion: A provider-agnostic framework for building AI agent systems"""

__version__ = "0.1.0"
__version__ = "0.1.1"

# Core interfaces

Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[tool.poetry]
name = "Legion-ai"
version = "0.1.0"
name = "legion-ai"
version = "0.1.1"
description = "Legion is a flexible and provider-agnostic framework designed to simplify the creation of sophisticated multi-agent systems"
authors = ["Hayden Smith <[email protected]>"]
authors = [
"Hayden Smith <[email protected]>",
"Zain Imdad <[email protected]>"
]
license = "LICENSE" # MIT License
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="Legion-ai",
version="0.1.0",
version="0.1.1",
description="A flexible and provider-agnostic framework for building AI agent systems.",
url="https://github.com/LLMP-io/Legion",
packages=find_packages(include=["legion", "legion.*"]),
Expand Down

0 comments on commit 0053450

Please sign in to comment.