feat: v1.0.0 release readiness#32
Open
CodeKeanu wants to merge 1 commit into
Open
Conversation
- Update version to 1.0.0 in pyproject.toml and server.py - Change development status from Alpha to Production/Stable - Add missing test coverage for steam_user, user_stats, steam_news endpoints - Remove duplicate _resolve_steam_id methods, use base class implementation - Update CHANGELOG.md with v1.0.0 release notes - Fix test patches after code consolidation Closes #29 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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.
Summary
This PR addresses the v1.0 readiness checklist from issue #29:
_resolve_steam_idmethods, consolidated to base classChanges
Version Updates
pyproject.toml: version0.8.0→1.0.0pyproject.toml: status3 - Alpha→5 - Production/Stableserver.py: server_version0.1.0→1.0.0New Test Coverage
tests/test_steam_user.py- 6 tools (get_my_steam_id, get_player_summary, get_player_summaries, resolve_vanity_url, get_friend_list, get_player_bans)tests/test_user_stats.py- 6 tools (get_player_achievements, get_game_schema, get_global_achievement_percentages, get_user_stats_for_game, get_current_players, get_global_stats_for_game)tests/test_steam_news.py- 1 tool (get_news_for_app)Code Consolidation
_resolve_steam_idfrom steam_user.py, user_stats.py, player_service.py, steam_trading.pyBaseEndpoint._resolve_steam_id()Documentation
Testing
Checklist from Issue
pyproject.tomlline 7: Update version from0.8.0to1.0.0server.pyline 128: Updateserver_versionfrom"0.1.0"to"1.0.0"tests/test_steam_user.py(6 tools)tests/test_user_stats.py(6 tools)tests/test_steam_news.py(1 tool)steam_user.py- remove duplicate, useself._resolve_steam_id()from baseuser_stats.py- remove duplicateplayer_service.py- remove duplicate5 - Production/StableCloses #29
🤖 Generated with Claude Code