Skip to content

Commit

Permalink
chore: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlGW committed May 15, 2024
1 parent ebb585a commit ab92c5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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, this label must be set with either `AZCFG_SETTINGS_LABEL`.
An alternative is to 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

0 comments on commit ab92c5f

Please sign in to comment.