Synchronized Version Management for Package and Database
Source:R/version_sync.R
update_package_version.Rd
These functions manage synchronized versioning between the R package, database schema, NEWS.md file, and git commits with GitHub permalinks. Update Package Version and NEWS
Details
Updates the package DESCRIPTION version and prepends a new entry to NEWS.md. This should be called before committing and recording the schema version.
Examples
if (FALSE) { # \dontrun{
update_package_version(
version = "1.0.0",
description = "Initial production release",
news_items = c(
"Complete NOAA CalCOFI Database ingestion",
"Add schema versioning system",
"Create master ingestion workflow"
)
)
} # }