Skip to content

Commit 9eb4887

Browse files
prepare readme for release 1.40.0 (#1374)
* readme for 1.40.0 * remove snapshot of client-runtime as they are not there
1 parent 7bfe8af commit 9eb4887

File tree

2 files changed

+16
-23
lines changed

2 files changed

+16
-23
lines changed

README.md

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ New Management libraries can be identified by namespaces that start with `azure-
1010

1111
# Azure Management Libraries for Java
1212

13-
This README is based on the released stable version (1.39.1). If you are looking for other releases, see [More Information](#more-information).
13+
This README is based on the released stable version (1.40.0). If you are looking for other releases, see [More Information](#more-information).
1414

1515
The Azure Management Libraries for Java is a higher-level, object-oriented API for *managing* Azure resources, that is optimized for ease of use, succinctness and consistency.
1616

@@ -32,7 +32,7 @@ If you are looking for Java client libraries for *consuming* (rather than *manag
3232
* [More information](#more-information)
3333

3434
## Feature Availability and Road Map
35-
:triangular_flag_on_post: *as of Version 1.39.1*
35+
:triangular_flag_on_post: *as of Version 1.40.0*
3636

3737
<table>
3838
<tr>
@@ -624,13 +624,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
624624

625625
### Use single library
626626

627-
For instance, if you only need azure-mgmt-appservice library from 1.39.1, and wish to limit the dependencies, using following dependency instead in POM.
627+
For instance, if you only need azure-mgmt-appservice library from 1.40.0, and wish to limit the dependencies, using following dependency instead in POM.
628628

629629
```xml
630630
<dependency>
631631
<groupId>com.microsoft.azure</groupId>
632632
<artifactId>azure-mgmt-appservice</artifactId>
633-
<version>1.39.1</version>
633+
<version>1.40.0</version>
634634
</dependency>
635635
<dependency>
636636
<groupId>com.microsoft.azure</groupId>
@@ -661,13 +661,13 @@ WebApp webApp = appServiceClient.webApps()
661661

662662
### Latest stable release
663663

664-
If you are using released builds from 1.39.1, add the following to your POM file:
664+
If you are using released builds from 1.40.0, add the following to your POM file:
665665

666666
```xml
667667
<dependency>
668668
<groupId>com.microsoft.azure</groupId>
669669
<artifactId>azure</artifactId>
670-
<version>1.39.1</version>
670+
<version>1.40.0</version>
671671
</dependency>
672672
```
673673

@@ -694,22 +694,7 @@ If you are using snapshots builds for this repo, add the following repository an
694694
<dependency>
695695
<groupId>com.microsoft.azure</groupId>
696696
<artifactId>azure</artifactId>
697-
<version>1.39.2-SNAPSHOT</version>
698-
</dependency>
699-
<dependency>
700-
<groupId>com.microsoft.azure</groupId>
701-
<artifactId>azure-client-runtime</artifactId>
702-
<version>1.6.5-SNAPSHOT</version>
703-
</dependency>
704-
<dependency>
705-
<groupId>com.microsoft.azure</groupId>
706-
<artifactId>azure-client-authentication</artifactId>
707-
<version>1.6.5-SNAPSHOT</version>
708-
</dependency>
709-
<dependency>
710-
<groupId>com.microsoft.rest</groupId>
711-
<artifactId>client-runtime</artifactId>
712-
<version>1.6.5-SNAPSHOT</version>
697+
<version>1.40.1-SNAPSHOT</version>
713698
</dependency>
714699
```
715700

@@ -721,7 +706,7 @@ If you are using snapshots builds for this repo, add the following repository an
721706

722707
## Upgrading from older versions
723708

724-
If you are migrating your code from 1.39.0 to 1.39.1, you can use these release notes for [preparing your code for 1.39.1 from 1.39.0](./notes/prepare-for-1.39.1.md).
709+
If you are migrating your code from 1.39.1 to 1.40.0, you can use these release notes for [preparing your code for 1.40.0 from 1.39.1](./notes/prepare-for-1.40.0.md).
725710

726711
In general, Azure Libraries for Java follow [semantic versioning](http://semver.org/), so user code should continue working in a compatible fashion between minor versions of the same major version release train, with the following caveats:
727712

@@ -754,6 +739,7 @@ If you would like to become an active contributor to this project please follow
754739

755740
| Version | SHA1 | Remarks |
756741
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
742+
| 1.40.0 | [1.40.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.40.0) | Tagged release for 1.40.0 version of Azure management libraries |
757743
| 1.39.1 | [1.39.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.39.1) | Tagged release for 1.39.1 version of Azure management libraries |
758744
| 1.39.0 | [1.39.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.39.0) | Tagged release for 1.39.0 version of Azure management libraries |
759745
| 1.38.1 | [1.38.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.38.1) | Tagged release for 1.38.1 version of Azure management libraries |

notes/prepare-for-1.40.0.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Prepare for Azure Management Libraries for Java 1.40.0 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for Java from 1.39.1 to 1.40 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.40 is backwards compatible with V1.39.1 in the APIs intended for public use that reached the general availability (stable) stage in V1.x.

0 commit comments

Comments
 (0)