Prepares the statifier_ui 0.1.0 Hex release - #36
Merged
Conversation
Adds package/0 (statifier_ui, MIT, lib + mix.exs + README + LICENSE +
CHANGELOG in the tarball) and the docs/0 hexdocs configuration (README
landing page, architecture and wire-format guides, the ADR set), and
moves the version from 0.1.0-dev to 0.1.0.
The engine dependency swaps from a git pin to {:statifier, "~> 2.0"} -
statifier 2.0.0 is on Hex, ending the pin arrangement (st-ADR-0066) -
behind the same STATIFIER_PATH env override the sibling packages use for
cross-repo co-development. Upgrading across the pin move costs one test
fixture change: statifier enforces ordinal on hand-built SendDelayed and
Cancel structs now (its 2.0.0 changelog names exactly this), so the
normalizer test's three fixtures gain ordinal: 1.
CHANGELOG.md is created with the [0.1.0] section assembled from all
seven changelog.d/ fragments, deleted here per the fragment protocol;
README gains a standard Hex install section. Before merge, once
statifier 2.0.0 is live on Hex, mix deps.get refreshes mix.lock's
statifier entry from the git pin to the Hex release and the gate re-runs
without the STATIFIER_PATH override; tagging v0.1.0 and mix hex.publish
stay the operator's actions after merge.
Refs: sui-tx0
statifier 2.0.0 is live on Hex, so mix.lock's engine entry moves from the git pin to the Hex release, and the gate runs green against it with no STATIFIER_PATH override - the pre-merge step the release PR named. Refs: sui-tx0
Member
Author
|
statifier 2.0.0 is live on Hex - mix.lock now locks the Hex release (git pin gone) and the full gate is green against it with no override: 427 tests, 92.3% coverage. Ready to merge; after merge: tag v0.1.0, mix hex.publish. |
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.
Works sui-tx0. Blocked on statifier 2.0.0 reaching Hex (riddler/statifier-ex#222): the dep swaps to
{:statifier, "~> 2.0"}here, and Hex refuses to publish over a git dep, so this merges only after the engine is live.package/0anddocs/0added; version0.1.0-dev->0.1.0.{:statifier, "~> 2.0"}, behind the sameSTATIFIER_PATHenv override the sibling packages use.CHANGELOG.mdcreated;[0.1.0]assembled from all seven fragments, fragments deleted.ordinalon hand-builtSendDelayed/Cancelstructs, so three normalizer test fixtures gainordinal: 1.Gate is green with
STATIFIER_PATHpointing at the 2.0.0 release branch (427 tests, 92.3% coverage). Before merge:mix deps.get(no override) to movemix.lock's statifier entry from the git pin to the Hex release, gate re-run. After merge: tagv0.1.0,mix hex.publish(operator).