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

chore: release v0.0.38 #268

Merged
merged 1 commit into from
May 3, 2024
Merged

chore: release v0.0.38 #268

merged 1 commit into from
May 3, 2024

Conversation

jamescalam
Copy link
Member

@jamescalam jamescalam commented May 3, 2024

Type

enhancement


Description

  • Updated the version number in semantic_router/__init__.py and pyproject.toml from 0.0.37 to 0.0.38.
  • This change prepares the package for a new release.

Changes walkthrough

Relevant files
Configuration changes
__init__.py
Update package version in __init__.py                                       

semantic_router/init.py

  • Updated the version number from 0.0.37 to 0.0.38.
+1/-1     
pyproject.toml
Update package version in pyproject.toml                                 

pyproject.toml

  • Updated the version number from 0.0.37 to 0.0.38.
+1/-1     

PR-Agent usage:
Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

@jamescalam jamescalam merged commit a4404fa into main May 3, 2024
6 checks passed
@jamescalam jamescalam deleted the james/v0.0.38 branch May 3, 2024 05:52
@github-actions github-actions bot added the enhancement Enhancement to existing features label May 3, 2024
Copy link

github-actions bot commented May 3, 2024

PR Description updated to latest commit (a982fb8)

Copy link

github-actions bot commented May 3, 2024

PR Review

⏱️ Estimated effort to review [1-5]

1, because the changes are minimal and straightforward, involving only version number updates in two files.

🧪 Relevant tests

No

🔍 Possible issues

No

🔒 Security concerns

No

Code feedback:

✨ Review tool usage guide:

Overview:
The review tool scans the PR code changes, and generates a PR review which includes several types of feedbacks, such as possible PR issues, security threats and relevant test in the PR. More feedbacks can be added by configuring the tool.

The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.

  • When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:
/review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
[pr_reviewer]
some_config1=...
some_config2=...

See the review usage page for a comprehensive guide on using this tool.

Copy link

github-actions bot commented May 3, 2024

PR Code Suggestions

CategorySuggestions                                                                                                                                                       
Best practice
Use a single source of truth for the package version to maintain consistency.

Consider using a single source of truth for the version number to avoid inconsistencies.
You can import the version from pyproject.toml into your Python package.

semantic_router/init.py [7]

-__version__ = "0.0.38"
+from importlib.metadata import version
+__version__ = version('semantic-router')
 
Enhancement
Automate the versioning process to reduce manual errors and inconsistencies.

Ensure that the version number is updated in a consistent and automated manner, possibly
through CI/CD pipelines, to prevent human errors.

pyproject.toml [3]

-version = "0.0.38"
+version = "0.0.38"  # This value should be set automatically by CI/CD tools
 

✨ Improve tool usage guide:

Overview:
The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.

  • When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:
/improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
[pr_code_suggestions]
some_config1=...
some_config2=...

See the improve usage page for a comprehensive guide on using this tool.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement to existing features Review effort [1-5]: 1
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant