Tags

Tags give the ability to mark specific points in history as being important
  • git-ref-v0.9.1

    ### New Features
    
     - PartialNameRef<'static>::join() for building paths on the fly
     - Allow `PartialNameRef` to be created from owned items
    
    ### Commit Statistics
    
     - 5 commits contributed to the release over the course of 11 calendar days.
     - 2 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 2 unique issues were worked on: #251, #254
    
    ### Commit Details
    
     * **#251**
        - PartialNameRef<'static>::join() for building paths on the fly (c0fc4f6)
        - refactor (244a646)
        - Allow `PartialNameRef` to be created from owned items (b7aab9e)
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-protocol-v0.12.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-transport-v0.13.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 4 commits contributed to the release over the course of 25 calendar days.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
        - Fix false positive clippy warning. (9b8363b)
  • git-packetline-v0.12.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-odb-v0.24.0

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-pack-v0.14.0

    An important bugfix to prevent assertion failures when writing thin packs.
    
    ### Bug Fixes
    
     - Adjust size-hints of resolving entries iterator and use the upper bound in delta tree.
       
       The delta-tree is a data structure that actually heavily relies on
       favorable allocation and a known amount of objects in order to
       provide front and back buffers. However, this is an implementation
       detail and they don't have to stay consistent at all especially
       after growing the buffer by pushing to it.
       
       Interestingly, the VecDeque internally over-allocates as well which
       definitely helps the example of `as_mut_slices()`, otherwise
       it could also suffer from the assertions that trigger here.
    
    ### Commit Statistics
    
     - 7 commits contributed to the release over the course of 18 calendar days.
     - 2 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 2 unique issues were worked on: #247, #254
    
    ### Commit Details
    
     * **#247**
        - Rename gix->ein and gixp->gix (e8b0919)
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
        - minor refactor (227c8b1)
        - Adjust size-hints of resolving entries iterator and use the upper bound in delta tree (20b3994)
     * **Uncategorized**
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
        - Adjust changelogs prior to git-pack release (ac8015d)
        - Merge branch 'header-field-multi-improve' of https://github.com/xmo-odoo/gitoxide into xmo-odoo-header-field-multi-improve (d88e377)
  • git-traverse-v0.10.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-diff-v0.11.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
  • git-object-v0.15.1

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 5 commits contributed to the release over the course of 15 calendar days.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #254
    
    ### Commit Details
    
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
        - Adjust changelogs prior to git-pack release (ac8015d)
        - Improve error handling of encode::header_field_multi_line & simplify (bab9fb5)
  • git-config-v0.1.8

    A maintenance release triggered by changes to git-pack and changelog rewrites.
    
    ### Commit Statistics
    
     - 18 commits contributed to the release over the course of 25 calendar days.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 2 unique issues were worked on: #241, #254
    
    ### Commit Details
    
     * **#241**
        - Improve usability of the pack-cache environment variable (47d8162)
     * **#254**
        - Adjust changelogs prior to git-pack release (6776a3f)
     * **Uncategorized**
        - better changelog descriptions. (f69b2d6)
        - Adjusting changelogs prior to release of git-config v0.1.8, git-object v0.15.1, git-diff v0.11.1, git-traverse v0.10.1, git-pack v0.14.0, git-odb v0.24.0, git-packetline v0.12.1, git-transport v0.13.1, git-protocol v0.12.1, git-ref v0.9.1, git-repository v0.12.0, cargo-smart-release v0.6.0, safety bump 5 crates (39b40c8)
        - Remove stale clippy allow (8441e92)
        - Note, not zero-copy nor alloc (75879b0)
        - Comment (4b00d68)
        - Lint (e700284)
        - Format (960dcdc)
        - Add multi value test (f3bcefb)
        - Assert error kind (763266d)
        - Assert io error (03541c5)
        - Not mutable (0cfe8a4)
        - Rename test (bfcad07)
        - Assert invalid paths (be4a4ea)
        - Assert config len (bbce210)
        - Remove debug print (cdf88e6)
        - First pass (a424d5a)
  • cargo-smart-release-v0.5.6

    ### Bug Fixes
    
     - nicer previews thanks to added newline
    
    ### Commit Statistics
    
     - 1 commit contributed to the release.
     - 1 commit where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #228
    
    ### Commit Details
    
     * **#228**
        - nicer previews thanks to added newline (ff2c07a)
  • cargo-smart-release-v0.5.5

    The `v` prefix is not enforced anymore and is handled depending on what's already present.
    
    This helps to handle changelogs with slightly different styles as well.
    
    ### New Features
    
     - Support for lack of prefixes in version headers.
       
       These are also inherited so once set by a single versioned release
       section, fully generated sections will inherit their prefix from
       that one.
    
    ### Bug Fixes
    
     - Assume manifests cannot necessarily be read by `cargo_toml::Manifest` and fallback.
       
       This prevents errors to occur in some configurations when no crate is specified on the command-line.
    
    ### Commit Statistics
    
     - 4 commits contributed to the release.
     - 2 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #228
    
    ### Commit Details
    
     * **#228**
        - update changelog (435be34)
        - Flexible tag parsing allows to find any version tags (a1b12e6)
        - Support for no prefixes in version headers (3613a95)
        - Assume manifests cannot necessarily be read by `cargo_toml::Manifest` and fallback (9d0d1fd)
  • cargo-smart-release-v0.5.4

    ### Bug Fixes
    
     - create github release only after tags were created and pushed
    
    ### Commit Statistics
    
     - 1 commit contributed to the release.
     - 1 commit where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #227
    
    ### Commit Details
    
     * **#227**
        - create github release only after tags were created and pushed (77f433e)
  • cargo-smart-release-v0.5.3

    ### Bug Fixes
    
     - strip `.git` suffix from repository paths when using it in urls
     - remove extra '/' after https://github.com/ based URLs
    
    ### Commit Statistics
    
     - 3 commits contributed to the release.
     - 2 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
    ### Commit Details
    
     * **#222**
        - fix smart-release journey test expecations (4b638ae)
     * **Uncategorized**
        - strip `.git` suffix from repository paths when using it in urls (a3aaa3e)
        - remove extra '/' after https://github.com/ based URLs (53ee1a7)
  • v0.10.0

    This release pins beta versions of `clap` to avoid it to automatically fetch the latest one
    during installation.
    
    This is made possible due to `clap` itself pinning its dependency
    to the `clap-derive` crate.
    
     - 1 commit contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
     * **#222**
        - upgrade to clap 3 beta 5 (2ddc4ed)
    
  • cargo-smart-release-v0.5.2

    Releases will be more atomic and it will try hard to complete all pending operations even in the light
    of failure. Now GitHub releases will be created right after a publish succeeded, and tags will be pushed
    for all successful publishes.
    
    ### New Features
    
     - Add `-d` short flag for `--allow-dirty` in `changelog`
    
    ### Bug Fixes
    
     - Push all available tags even if an error occurred.
       
       That way, tags don't remain unpushed despite having been created
       successfully, just because one crate later in the publishing
       process fails.
     - Create GitHub release right after publishing succeeds.
       
       This is more atomic and prevents loosing all github releases if one
       publish fails later on.
     - `src/` dir of root packages is only used if there is multiple workspace members.
       
       Otherwise one part of the dependency resolver might have concluded that there are changes, while another part would not have.
       The outcome would have been the same, but the messaging around it would have been different unnecessarily.
    
    ### Commit Statistics
    
     - 6 commits contributed to the release.
     - 4 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
    ### Commit Details
    
     * **#222**
        - adjust changelog (6ce09b7)
        - Add `-d` short flag for `--allow-dirty` in `changelog` (db3cb11)
        - adjust changelog (2db6d88)
        - push all available tags even if an error occurred (8c3ca9c)
        - create GitHub release right after publishing succeeds (b769c47)
        - src/ dir of root packages is only used if there is multiple workspace members (ae85700)
  • cargo-smart-release-v0.5.1

    This release contains an important bugfix which may have caused panics when the root-package didn't have changes.
    
    ### New Features
    
     - `changelog` subcommand fails if there is nothing to do
    
    ### Bug Fixes
    
     - Fix panic due to unexpected internal state.
       
       When there was no change in the src/ directory of the top-level crate,
       the dependency resolution would not be able to auto-bump the version
       as no change occurred, but another part would usually detect a change
       as it wasn't confined to the top-level src/ directory.
       
       This could lead to a panic as an invariant wasn't upheld.
       
       This was fixed by letting both parts agree to use the src/ directory
       to determine changes of the top-level directory, and by making panics
       impossible while improving the messaging around this state should it
       still occur. The latter is rough, probably rare, but usable.
     - Correct the reporting of manifest changes.
       
       Previously even unchanged crates would trigger workspace crates
       to be recorded for manifest changes.
       
       Now only crates that are to receive manifest changes will be triggering
       this.
    
    ### Commit Statistics
    
     - 6 commits contributed to the release.
     - 3 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
    ### Commit Details
    
     * **#222**
        - adjust changelog for release, now definitely (7133f5d)
        - correct reporting of manifest changes (6ee4f5d)
        - adjust changelog for smart-release release (210b09a)
        - `changelog` subcommand fails if there is nothing to do (ed8abfd)
        - panic due to unexpected internal state (ce68733)
        - crude fix to avoid version related invariants to kick in during dependency resolution (3cdebf5)
  • cargo-smart-release-v0.5.0

    A release with breaking changes as the dependency engine was reworked to handle even more cases
    and make future improvements easier.
    
    ### New Features
    
     - Respect `publish=false` in cargo manifest
     - Perform safety bumps without forcing a publish.
       
       This is what's required to assure that future publishes of such
       transitively dependent crates won't cause downstream breakage the next time the tool is run.
     - Inform about safety bumps more explicitly,
       and generally greatly improve the way the course of action is described.
    
    ### Bug Fixes
    
     - Dependency resolution.
       
       Previously the ordering of crates for release might not have been
       correct due to this issue that is now fixed.
       
       We need depth-first traversals and previously it would extend skipped
       dependencies, effectively putting them into their own ordering.
       
       Previously it would restore that ordering, but not anymore, causing
       this bug that was entirely unnecessary.
     - `--no-changelog` during smart-release is now actually working
       
       Previously the flag had no effect and changelogs would always be
       generated, possibly stopping the release as at least one of them
       needed manual work.
     - Pin version of clap to beta 5.
       
       This assures we don't get broken automatically in future.
       Previously that wasn't possible as the dependency of `clap`,
       `clap-derive` was also using a beta verion and wasn't constrained,
       hence it would be updated and cause breaking changes with pinned
       versions of consumers of `clap`.
    
    ### Changed (BREAKING)
    
     - `changelog` subcommand inverts `--dependencies` to `--no-dependencies`
     - Remove `--no-multi-crate-release` support entirely
      
       As the default is to do multi-crate releases and now having to deal
       with single-create releases reduces maintenance burden.
    
       The solution to this problem is to not specify version constraints in
       dev-dependencies to workspace crates.
    
       We also don't check for this anymore, which might be re-added
       at some point if there is demand.This makes dependency resolution similar to cargo smart-release by default and is less surprising.
    
    ### Commit Statistics
    
     - 81 commits contributed to the release over the course of 3 calendar days.
     - 10 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 4 unique issues were worked on: #198, #221, #222, #224
    
    ### Thanks Clippy
    
    [Clippy](https://github.com/rust-lang/rust-clippy) helped 3 times to make code idiomatic. 
    
    ### Commit Details
    
     * **#198**
        - Add yet another video (dc8f7ca)
        - Update Asciinema link in readme (b56a31e)
     * **#221**
        - Add tests which indicate the problem: safety-bump not applied to auto-publishes… (32e1f1a)
        - --no-changelog-preview isn't needed anymore in dry-run mode (1b6a4ad)
        - refactor (aff053f)
        - Inform about safety bumps more explicitly (b806a9c)
        - refactor (23073e8)
     * **#222**
        - refactor (72bda30)
        - refactor (c8c0dcd)
        - refactor (f7a8847)
        - fix merging of dependency graphs for multiple crates (d332cdf)
        - Revert "FAIL: try to assure that breaking changes are always published in correct order" (f25e7c7)
        - try to assure that breaking changes are always published in correct order (3519f9a)
        - update changelogs prior to release (9a493d0)
        - Respect user selection when re-adding crates for manifest change (72d16bf)
        - dependency resolution (501c1d1)
        - --no-changelog during smart-release is now actually working (5e98e55)
        - replace TODO with runtime logging (f457e65)
        - unify presentation even more (7c32409)
        - adjust expectations in smart-release journey tests (1f96a72)
        - group skipped items by skipped reason (ba28746)
        - unify reporting style (99be2e1)
        - fix reporting of skipped crates, consider adjustment (ac91016)
        - Abort if not a single provided crate would need publishing (478c4ea)
        - improved reporting of skipped/refused crates; abort operation if there is nothing to publish (f9358f1)
        - better reporting of crates that where refused to be published (1d7142a)
        - 'changelog' subcommand change --dependencies to --no-dependencies (59302ae)
        - Properly resolve breaking propagation through the graph (4f25236)
        - multi-round discovery of breaking changes from published packages (dc93e1a)
        - Verify and partially fix journey tests (e53a7f6)
        - remove all now unused items (40f2da2)
        - use Dependency in manifest editor (d5c905a)
        - upgrade to clap 3 beta 5 (2ddc4ed)
        - Show only changelogs that would be published (e20f498)
        - refactor (244431f)
        - Fix reporting of skipped crates (a305232)
        - Respect publish=false in cargo manifest (6d4edfa)
        - more consistent reporting of what would be done (47ce4b0)
        - refactor (369fa93)
        - don't try to change crates that are already at the correct version (561aac3)
        - keep ordering of causes for breaking changes when printing (f4a0970)
        - better safety bumps to be more concise (7c8335a)
        - Perform safety bumps without forcing a publish (7648bf3)
        - refactor (ebec001)
        - inform about the crates seeing a mnifest update too; only show fully-skipped crates (7f2a927)
        - fix:! breaking changes cause intermediate (otherwise skipped) crates to be published. (fb6b909)
        - reverse-bumping for safety works, including publishing :) (5e1713c)
        - track root-cause as well (7f8e720)
        - sketch backwards search for lifting crates to be published (0b018c0)
        - Realize that the search can't be 'flat' (13db698)
        - start sketching backward traversal… (de1d7f7)
        - sumarize manifest updates rather than spelling out each one (8cf00e0)
        - update test expectations and formulate 'the algorithm' (c0693ae)
        - refactor (0bfb1b1)
        - assure changelog picks up safety bumps as well (f2a497b)
        - Collect crates for manifest updates (56ccdd2)
        - Remove --no-multi-crate-release support entirely (07372dd)
        - remove performance measurements (37bacee)
        - refactor (ac85cdf)
        - no newlines in gh traces (afd9b9e)
        - refactor (03c7dba)
        - Simplify use of 'verbose' flag by using log::trace! as well (4dc5f4b)
        - refactor (e256949)
        - refactor (e4ffa71)
        - try to represent safety-bump versions (9f3001f)
        - refactor (6f84e0b)
        - Simple version bumping logic based on what currently exists, with printout (81e5785)
        - fully data-driven presentation of dependency tracking results… (fd53e22)
        - refactor (51a5d36)
        - refactor (b8a5fc8)
        - refactor (10aa1eb)
        - refactor (cfec54d)
        - Remove `--only` alias and invert `--no-dependencies` to `--dependencies` (2f87196)
        - Keep track of skipped crate names for future use (f0a04c7)
     * **#224**
        - pin version of clap to beta 5 (dfc588b)
     * **Uncategorized**
        - changelog update (7fcd02e)
        - Adjusting changelogs prior to release of cargo-smart-release v0.5.0 (11f55d3)
        - Release git-hash v0.8.0, git-features v0.17.0, git-actor v0.6.0, git-object v0.15.0, git-diff v0.11.0, git-traverse v0.10.0, git-pack v0.13.0, git-odb v0.23.0, git-packetline v0.12.0, git-transport v0.13.0, git-protocol v0.12.0, git-ref v0.9.0, git-repository v0.11.0, git-commitgraph v0.6.0, gitoxide-core v0.12.0, gitoxide v0.10.0, cargo-smart-release v0.5.0, safety bump 16 crates (0e02953)
        - thanks clippy (7496ba3)
        - thanks clippy (b717323)
        - thanks clippy (c4efd9d)
  • gitoxide-core-v0.12.0

    A maintenance release to properly dealing with previously breaking changes in `git-hash`.
    
    ### Commit Statistics
    
     - 2 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
    ### Commit Details
    
     * **#222**
        - stabilize changelogs (920e832)
        - Update changelogs prior to release (b3e2252)
  • git-commitgraph-v0.6.0

    A maintenance release due to properly dealing with previously breaking changes in `git-hash`.
    
    ### Commit Statistics
    
     - 2 commits contributed to the release.
     - 0 commits where understood as [conventional](https://www.conventionalcommits.org).
     - 1 unique issue was worked on: #222
    
    ### Commit Details
    
     * **#222**
        - stabilize changelogs (920e832)
        - Update changelogs prior to release (b3e2252)