-
Notifications
You must be signed in to change notification settings - Fork 297
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
add pipe operator on QueryBuilder #759
Conversation
…o pipe_operator
pypika/__init__.py
Outdated
@@ -100,7 +100,7 @@ | |||
|
|||
__author__ = "Timothy Heys" | |||
__email__ = "[email protected]" | |||
__version__ = "0.48.9" | |||
__version__ = "0.48.10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this the expected version update?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to bump the version separately and also start a CHANGELOG.md
as well as describe all of the changes there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reverted the version back to 0.48.9 So no version change.
Have you guys considered using the automated release notes? https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
It'd be based on the PR labels. Might be easy way to automate 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good but I left a comment about the library (I meant test) test as well as versioning approach
Thanks for you work! |
Could you describe this possibility in |
Any other suggestions here? |
Looks good to me. If no other suggestions emerge in the coming days, I will merge it |
pipe method like in pandas in order to do some chaining. Related to this issue here.