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

Release 1.1.1 version preparation #9869

Merged
merged 3 commits into from
Apr 6, 2020
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
2 changes: 1 addition & 1 deletion eng/jacoco-test-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.2.0-beta.1</version> <!-- {x-version-update;com.azure:azure-data-appconfiguration;current} -->
<version>1.1.1</version> <!-- {x-version-update;com.azure:azure-data-appconfiguration;current} -->
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ com.azure:azure-core-tracing-opentelemetry;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-cosmos;4.0.1-beta.1;4.0.1-beta.2
com.azure:azure-cosmos-examples;4.0.1-beta.1;4.0.1-beta.1
com.azure:azure-cosmos-benchmark;4.0.1-beta.1;4.0.1-beta.1
com.azure:azure-data-appconfiguration;1.1.0;1.2.0-beta.1
com.azure:azure-data-appconfiguration;1.1.0;1.1.1
com.azure:azure-e2e;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-identity;1.0.4;1.1.0-beta.3
com.azure:azure-messaging-eventhubs;5.0.2;5.1.0-beta.1
Expand Down
4 changes: 2 additions & 2 deletions sdk/appconfiguration/azure-data-appconfiguration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History
## 1.2.0-beta.1 (Unreleased)

## 1.1.1 (2020-04-06)
- Update dependency version, `azure-core` to 1.4.0 and `azure-core-http-netty` to 1.5.0.

## 1.1.0 (2020-03-11)
- Updated javadoc to support the changes that App Configuration service no longer support `*a` and `*a*` suffix and full text search.
Expand Down
4 changes: 2 additions & 2 deletions sdk/appconfiguration/azure-data-appconfiguration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ Use the client library for App Configuration to create and manage application co
- [Azure Subscription][azure_subscription]
- [App Configuration Store][app_config_store]

### Adding the package to your product
### Include the Package

[//]: # ({x-version-update-start;com.azure:azure-data-appconfiguration;current})
```xml
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
2 changes: 1 addition & 1 deletion sdk/appconfiguration/azure-data-appconfiguration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.2.0-beta.1</version> <!-- {x-version-update;com.azure:azure-data-appconfiguration;current} -->
<version>1.1.1</version> <!-- {x-version-update;com.azure:azure-data-appconfiguration;current} -->

<name>Microsoft Azure client library for App Configuration</name>
<description>This package contains the Microsoft Azure App Configuration client library.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,6 @@ Key concepts are explained in detail [here][SDK_README_KEY_CONCEPTS].
## Getting started
Getting started explained in detail [here][SDK_README_GETTING_STARTED].

### Adding the package to your project
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/CC @alzimmermsft
I don't think this should have been removed. "Adding the package..." should be changed to "Include the package" and the version should have been updated to 1.1.1

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Discussed offline, removing this from the samples README should be fine given that AppConfiguration was the odd on out for including this. Will follow-up around this during the release postmortem to get guidelines in place for the samples READMEs as we do for the root README.


Maven dependency for Azure app configuration Client library. Add it to your project's pom file.

[//]: # ({x-version-update-start;com.azure:azure-data-appconfiguration;current})
```xml
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-appconfiguration</artifactId>
<version>1.1.0</version>
</dependency>
```
[//]: # ({x-version-update-end})

## Examples
The following sections provide several code snippets covering some of the most common configuration service tasks, including:

Expand Down