chore: Bump to latest rust version 1.94 and publish beta tags from feature branch#154
Merged
gk-kindred merged 27 commits intomasterfrom Apr 1, 2026
Merged
chore: Bump to latest rust version 1.94 and publish beta tags from feature branch#154gk-kindred merged 27 commits intomasterfrom
gk-kindred merged 27 commits intomasterfrom
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #154 +/- ##
==========================================
+ Coverage 56.95% 66.30% +9.34%
==========================================
Files 113 123 +10
Lines 5708 12149 +6441
==========================================
+ Hits 3251 8055 +4804
- Misses 2457 4094 +1637 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
akaur13
approved these changes
Mar 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces below changes
1. Bump rust version to 1.94
We have been on very old rust version for a long time (1.75). This leads to issues at the time of publishing due transient packages have MSRV 1.80+.
The following commits covers the changes related to this part.
7985e3a, dcde9a0, 5391c0d
dcde9a0is to fix the lint change introduced in the newer versions of rust.2. Make it easy to publish
betatags from feature branches.Current workflow
master
0.3.140.3.15for publish0.3.16-devfeature branch currently:-
0.3.16-beta, fails at publishing at cargo publish step.0.3.17with tag from feature branch-devversion0.3.18-devProposed solution
0.3.140.3.15for publish-feature branch proposed
-betaversion. eg.0.3.16-beta.00.3.16-beta.00.3.16-beta.0in the master branch. Keeping the versions and commits clean at the same time make it flexible and easy to publish -beta tags from feature to test a feature/change.3. Fix code coverage github action and capture codecoverage
Code coverage was silently broken for sometime. Bumping to rust version 1.94 had minor changes around the code coverage, which is fixed and improved.