tizenportal

Changelog

All notable changes to TizenPortal are documented through git commit messages on tagged releases.

Version Information

Finding Version History

Version history is maintained through git tags with detailed commit messages. To view:

# List all version tags
git tag --list | sort -V

# View commit message for a specific version
git show <version-tag>

# View all tagged releases
git log --tags --simplify-by-decoration --pretty="format:%d %s"

Installation

To install TizenPortal via TizenBrew, use:

axelnanol/tizenportal

TizenBrew will automatically serve the latest release.

Version Notes

Versioning Philosophy

TizenPortal uses numeric 4-digit tags for releases. The format is XXYY where XX = major.minor and YY = patch (e.g., 1018 = v1.0.18).

Breaking Changes

Major breaking changes are documented in git commit messages when they occur. Always review the commit message of a version tag before upgrading.

Recent Development

For current development status and roadmap:

Legacy Versions

Historical version information prior to this changelog being created can be found in git history:

# View commit history
git log --oneline

# View tagged releases with dates 
git log --tags --simplify-by-decoration --pretty="format:%ai %d"

Note: This project follows a continuous deployment model where each meaningful change receives a version tag. Not all tags represent major feature releases - some may be bug fixes, documentation updates, or minor improvements.