chore(main): release balatrobench 1.2.0#10
Conversation
There was a problem hiding this comment.
Pull request overview
This PR is an automated release generated by Release Please that attempts to release version 1.0.0 of balatrobench. However, this release represents a version downgrade from the current 1.1.0 to 1.0.0, which is problematic.
Changes:
- Version numbers updated from 1.1.0 to 1.0.0 across all version files
- Comprehensive changelog entry added documenting features, bug fixes, and documentation updates
- Release Please manifest updated to reflect new version
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
src/balatrobench/__init__.py |
Downgrades package version from 1.1.0 to 1.0.0 |
pyproject.toml |
Downgrades project version from 1.1.0 to 1.0.0 |
package.json |
Downgrades npm package version from 1.1.0 to 1.0.0 |
CHANGELOG.md |
Adds new changelog entry for 1.0.0 with backwards comparison URL and future date |
.github/.release-please-manifest.json |
Updates release manifest to version 1.0.0 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| "name": "balatrobench", | ||
| "version": "1.1.0", | ||
| "version": "1.0.0", |
There was a problem hiding this comment.
This change downgrades the version from 1.1.0 to 1.0.0, which violates semantic versioning principles. Version numbers should always move forward, not backward. This could cause issues with package managers and dependency resolution. The version should be 1.2.0 or higher instead of reverting to 1.0.0.
| "version": "1.0.0", | |
| "version": "1.2.0", |
| @@ -1,5 +1,146 @@ | |||
| # Changelog | |||
|
|
|||
| ## [1.0.0](https://github.com/coder/balatrobench/compare/balatrobench-v1.1.0...balatrobench-v1.0.0) (2026-01-11) | |||
There was a problem hiding this comment.
The comparison URL is backwards - it compares from v1.1.0 to v1.0.0, which shows a reverse diff. The comparison should be from the older version (v1.0.0) to the newer version (v1.1.0), or this should reflect the actual intended version progression. Given the version downgrade issue, this comparison URL needs to be corrected along with the version number fix.
| ## [1.0.0](https://github.com/coder/balatrobench/compare/balatrobench-v1.1.0...balatrobench-v1.0.0) (2026-01-11) | |
| ## [1.1.0](https://github.com/coder/balatrobench/compare/balatrobench-v1.0.0...balatrobench-v1.1.0) (2026-01-11) |
| @@ -1,3 +1,3 @@ | |||
| { | |||
| ".": "1.1.0" | |||
| ".": "1.0.0" | |||
There was a problem hiding this comment.
This change downgrades the version from 1.1.0 to 1.0.0, which violates semantic versioning principles. Version numbers should always move forward, not backward. This could cause issues with package managers and dependency resolution. The version should be 1.2.0 or higher instead of reverting to 1.0.0.
| ".": "1.0.0" | |
| ".": "1.2.0" |
| from .writer import BenchmarkWriter | ||
|
|
||
| __version__ = "1.1.0" | ||
| __version__ = "1.0.0" |
There was a problem hiding this comment.
This change downgrades the version from 1.1.0 to 1.0.0, which violates semantic versioning principles. Version numbers should always move forward, not backward. This could cause issues with package managers and dependency resolution. The version should be 1.2.0 or higher instead of reverting to 1.0.0.
| __version__ = "1.0.0" | |
| __version__ = "1.2.0" |
| [project] | ||
| name = "balatrobench" | ||
| version = "1.1.0" | ||
| version = "1.0.0" |
There was a problem hiding this comment.
This change downgrades the version from 1.1.0 to 1.0.0, which violates semantic versioning principles. Version numbers should always move forward, not backward. This could cause issues with package managers and dependency resolution. The version should be 1.2.0 or higher instead of reverting to 1.0.0.
| version = "1.0.0" | |
| version = "1.2.0" |
48463ba to
c7c5c07
Compare
|
🤖 Created releases: 🌻 |
🤖 I have created a release beep boop
1.2.0 (2026-01-11)
Features
Bug Fixes
Build System
Miscellaneous Chores
Code Refactoring
Continuous Integration
This PR was generated with Release Please. See documentation.