Skip to content

Commit 48b8b38

Browse files
authored
Release Note: 1.38.0 (#1328)
1 parent d1f32e6 commit 48b8b38

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
@@ -11,7 +11,7 @@ New Management libraries can be identified by namespaces that start with `azure-
1111

1212
# Azure Management Libraries for Java
1313

14-
This README is based on the released stable version (1.37.1). If you are looking for other releases, see [More Information](#more-information).
14+
This README is based on the released stable version (1.38.0). If you are looking for other releases, see [More Information](#more-information).
1515

1616
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.
1717

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

3535
## Feature Availability and Road Map
36-
:triangular_flag_on_post: *as of Version 1.37.1*
36+
:triangular_flag_on_post: *as of Version 1.38.0*
3737

3838
<table>
3939
<tr>
@@ -625,13 +625,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
625625

626626
### Use single library
627627

628-
For instance, if you only need azure-mgmt-appservice library from 1.37.1, and wish to limit the dependencies, using following dependency instead in POM.
628+
For instance, if you only need azure-mgmt-appservice library from 1.38.0, and wish to limit the dependencies, using following dependency instead in POM.
629629

630630
```xml
631631
<dependency>
632632
<groupId>com.microsoft.azure</groupId>
633633
<artifactId>azure-mgmt-appservice</artifactId>
634-
<version>1.37.1</version>
634+
<version>1.38.0</version>
635635
</dependency>
636636
<dependency>
637637
<groupId>com.microsoft.azure</groupId>
@@ -662,13 +662,13 @@ WebApp webApp = appServiceClient.webApps()
662662

663663
### Latest stable release
664664

665-
If you are using released builds from 1.37.1, add the following to your POM file:
665+
If you are using released builds from 1.38.0, add the following to your POM file:
666666

667667
```xml
668668
<dependency>
669669
<groupId>com.microsoft.azure</groupId>
670670
<artifactId>azure</artifactId>
671-
<version>1.37.1</version>
671+
<version>1.38.0</version>
672672
</dependency>
673673
```
674674

@@ -695,7 +695,7 @@ If you are using snapshots builds for this repo, add the following repository an
695695
<dependency>
696696
<groupId>com.microsoft.azure</groupId>
697697
<artifactId>azure</artifactId>
698-
<version>1.37.2-SNAPSHOT</version>
698+
<version>1.38.1-SNAPSHOT</version>
699699
</dependency>
700700
<dependency>
701701
<groupId>com.microsoft.azure</groupId>
@@ -722,7 +722,7 @@ If you are using snapshots builds for this repo, add the following repository an
722722

723723
## Upgrading from older versions
724724

725-
If you are migrating your code from 1.37.0 to 1.37.1, you can use these release notes for [preparing your code for 1.37.1 from 1.37.0](./notes/prepare-for-1.37.1.md).
725+
If you are migrating your code from 1.37.1 to 1.38.0, you can use these release notes for [preparing your code for 1.38.0 from 1.37.1](./notes/prepare-for-1.38.0.md).
726726

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

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

756756
| Version | SHA1 | Remarks |
757757
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
758+
| 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 |
758759
| 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 |
759760
| 1.37.0 | [1.37.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.37.0) | Tagged release for 1.37.0 version of Azure management libraries |
760761
| 1.36.3 | [1.36.3](https://github.com/Azure/azure-libraries-for-java/tree/v1.36.3) | Tagged release for 1.36.3 version of Azure management libraries |

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

0 commit comments

Comments
 (0)