Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: v1.0.0 #118

Merged
merged 3 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ func main() {
Set the environment variable `AZCFG_APPCONFIGURATION_NAME` to the name of the target App Configuration.
An alternative is to pass the option `WithAppConfiguration` to the call to `Parse`.

If the settings have a label associated with them, set the environment variable `AZCFG_SETTINGS_LABEL`, or pass the option
`WithSettingsLabel` to the call to `Parse`. More information on handling labels (including multiple labels)
can be found in the section [App Configuration setting labels](#app-configuration-setting-labels).

```go
package main

Expand Down Expand Up @@ -184,6 +188,7 @@ func main() {
An alternative is to pass the option `WithKeyVault` to the call to `Parse`.
* Set the environment variable `AZCFG_APPCONFIGURATION_NAME` to the name of the target App Configuration.
An alternative is to pass the option `WithAppConfiguration` to the call to `Parse`.
* If applicable set `AZCFG_SETTINGS_LABEL`, or use the option `WithSettingsLabel`, to target a specific label for the settings.

```go
package main
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version

var (
// version contains version of azcfg.
version = "0.25.0"
version = "1.0.0"
)

// Version returns the version of azcfg.
Expand Down