All Versions
8
Latest Version
Avg Release Cycle
157 days
Latest Release
1506 days ago

Changelog History

  • v1.4.2 Changes

    February 13, 2020

    ๐Ÿ†• New to Go Modules, I think the previous setup with "required" was far too much. This removes all but what one required to actually use the module (plus another one for any tests).

    • Slim down Go Modules for consumers (#32)
  • v1.4.1 Changes

    February 13, 2020

    ๐Ÿš€ Minor release that just updates the README (not exported API), and adds Fuzzing to all inputs. It does not change the underlying code.

    • โœ… Implement fuzz logic testing of exported funcs (#31)
    • โฌ†๏ธ Upgrade CICD Pipeline Tooling (#31)
    • ๐Ÿ“š Update documentation for 1.x and 2.3 (#31)
    • ๐Ÿ‘ Allow godoc2ghmd to run without network (#31)
  • v1.4.0 Changes

    February 07, 2020

    ๐Ÿš‘ First release with Go Modules, a significant feature addition to a package - hence the bump in Minor to 1.4 going forward. The most critical thing to note in this update is that the vendor/ folder has been flushed out with more dependencies to allow for a true air-gapped testing setup (which I ran into during development on a new machine).

    โฌ†๏ธ Unless you were looking for Go Modules support in your pipelines, this is not a required upgrade as there was no underlying package changes.

    As always, 1.x branch keeps backwards compatibility.

    ๐Ÿ‘ Also note that going forward, Go Modules is supporting the vendor/ folder, keeping it backwards compatible with 1.7+ versions.

    • โž• Add C.I., Add Go Modules (#27)
    • Create FUNDING.yml (#23) (#24)
  • v1.3.2 Changes

    February 05, 2020

    ๐Ÿš€ A big thanks to everyone who have opened and resolved a number of PRs to this repo. This release was long overdue due to life events that just delayed things on my side.

    โฌ†๏ธ You should upgrade to this version over all previous versions for misc bug and improvements.

    As always, the 1.x branch retains all backwards compatibility and does not break anything.

    • Correct count len of UTF8 strings (#9)
    • ๐Ÿ“œ Implement duration parser (#8)
    • ๐Ÿ›  Fix Github and GoDocs Markdown (#14)
    • ๐Ÿšš Move podcast.go Private Methods to Respected Files (#12)
    • ๐Ÿ‘ Allow providing GUID on Podcast (#15)
  • v1.3.1 Changes

    February 05, 2020

    โšก๏ธ Ran across a few edge cases that needed some updates to the code. You should upgrade to this version over all previous versions.

    As always, the 1.x branch retains all backwards compatibility and does not break anything.

    • increased itunes compliance after feedback from Apple:
    • specified what categories should be set with AddCategory().
    • enforced title and link as part of Image.
    • โž• added Podcast.AddAtomLink() for more broad compliance to readers.
  • v1.3.0 Changes

    February 20, 2017

    1.3.0

    • ๐Ÿ›  fixes Item.Duration being set incorrectly.
    • ๐Ÿ”„ changed Item.AddEnclosure() parameter definition (Bytes not Seconds!).
    • โž• added Item.AddDuration formatting and override.
    • โž• added more documentation surrounding Item.Enclosure{}

    1.2.1

    • โž• added Podcast.AddSubTitle() and truncating to 64 chars.
    • โž• added a number of Guards to protect against empty fields.

    1.2.0

    • โž• added Podcast.AddPubDate() and Podcast.AddLastBuildDate() overrides.
    • โž• added Item.AddImage() to mask some cumbersome addition of IImage.
    • โž• added Item.AddPubDate to simply datetime setters.
    • โž• added more examples (mostly around Item struct).
    • ๐Ÿ“š tweaked some documentation.
  • v1.1.0 Changes

    February 06, 2017

    ๐Ÿš€ Release notes:

    • Enabling CDATA in ISummary fields for Podcast and Channel.

    ๐Ÿš€ In this release, the consumer can now enter up to 4000 characters of rich text in the CDATA field. See the examples in the GoDoc for Podcast.AddSummary() and Item.AddSummary().

  • v1.0.0 Changes

    February 06, 2017

    ๐Ÿš€ In this initial release, the code has been written and tested with 100% code coverage.

    ๐Ÿท Tag Versions

    ๐Ÿš€ This repo will follow the standard Major.Minor.Patch release tagging in that:

    • Major numbers will be breaking changes to the API.
    • Minor numbers will be additional features and enhancements to the existing API.
    • ๐Ÿ›  Revision numbers will be bug fixes or other misc tweaks to the existing features and API.

    ๐Ÿ‘ GoLang does support tag versioning; but, it isn't simple. Better to just use the vendor/ approach and snapshot this repo in any case.

    Current Roadmap

    There are several TODOs which may break the initial API, such as:

    • enabling CDATA ISummary tags for channel and item elements.
    • clean-up of the API, to make it similar (e.g. change podcast.New() to not take so many arguments.
    • โž• additional validation checking (e.g. change podcast.New() to return Podcast, error.
    • โž• additional validation checking (enforce 255 characters max for all fields, except summaries (iTunes)

    If such breaking changes happen, the version numbers will be bumped accordingly.