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.39 #271

Merged
merged 1 commit into from
May 11, 2024
Merged

chore: release v0.0.39 #271

merged 1 commit into from
May 11, 2024

Conversation

jamescalam
Copy link
Member

@jamescalam jamescalam commented May 11, 2024

PR Type

enhancement


Description

  • This PR updates the version number of the semantic-router package to 0.0.39 in both __init__.py and pyproject.toml.
  • The version update is part of the routine release process.

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.38 to 0.0.39.
+1/-1     
pyproject.toml
Update project version in pyproject.toml                                 

pyproject.toml

  • Updated the version number from 0.0.38 to 0.0.39.
+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 6fd1519 into main May 11, 2024
6 checks passed
@jamescalam jamescalam deleted the james/v0.0.39 branch May 11, 2024 11:38
@github-actions github-actions bot added the enhancement Enhancement to existing features label May 11, 2024
Copy link

PR Description updated to latest commit (b803ecb)

Copy link

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:

Copy link

PR Code Suggestions ✨

CategorySuggestions                                                                                                                                                       
Maintainability
Use a dynamic approach to manage the version number from a single source.

Consider using a more dynamic approach for setting the version number by importing it from
a single source of truth such as 'pyproject.toml' to avoid discrepancies and manual errors
in multiple files.

semantic_router/init.py [7]

-__version__ = "0.0.39"
+from importlib.metadata import version
+__version__ = version('semantic-router')
 
Best practice
Maintain version consistency across project files.

Ensure that the version number is updated in a consistent manner across all related files
to maintain consistency and avoid potential deployment issues or package inconsistencies.

pyproject.toml [3]

-version = "0.0.39"
+version = "0.0.39"  # Ensure this matches the version in all project metadata files
 

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