Skip to content

Commit 243f3ff

Browse files
authored
release note 1.39.0 (#1359)
1 parent 67901f4 commit 243f3ff

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

README.md

Lines changed: 9 additions & 8 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.38.1). If you are looking for other releases, see [More Information](#more-information).
13+
This README is based on the released stable version (1.39.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.38.1*
35+
:triangular_flag_on_post: *as of Version 1.39.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.38.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.39.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.38.1</version>
633+
<version>1.39.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.38.1, add the following to your POM file:
664+
If you are using released builds from 1.39.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.38.1</version>
670+
<version>1.39.0</version>
671671
</dependency>
672672
```
673673

@@ -694,7 +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.38.2-SNAPSHOT</version>
697+
<version>1.39.1-SNAPSHOT</version>
698698
</dependency>
699699
<dependency>
700700
<groupId>com.microsoft.azure</groupId>
@@ -721,7 +721,7 @@ If you are using snapshots builds for this repo, add the following repository an
721721

722722
## Upgrading from older versions
723723

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

726726
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:
727727

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

755755
| Version | SHA1 | Remarks |
756756
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
757+
| 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 |
757758
| 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 |
758759
| 1.38.0 | [1.38.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.38.0) | Tagged release for 1.38.0 version of Azure management libraries |
759760
| 1.37.1 | [1.37.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.37.1) | Tagged release for 1.37.1 version of Azure management libraries |

notes/prepare-for-1.39.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.39.0 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for Java from 1.38.1 to 1.39 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.39 is backwards compatible with V1.38.1 in the APIs intended for public use that reached the general availability (stable) stage in V1.x.

0 commit comments

Comments
 (0)