Skip to content

Commit 7c7eb89

Browse files
readme for release 1.41.2 (#1406)
1 parent c80f60a commit 7c7eb89

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

1313
# Azure Management Libraries for Java
1414

15-
This README is based on the released stable version (1.41.1). If you are looking for other releases, see [More Information](#more-information).
15+
This README is based on the released stable version (1.41.2). If you are looking for other releases, see [More Information](#more-information).
1616

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

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

3636
## Feature Availability and Road Map
37-
:triangular_flag_on_post: *as of Version 1.41.1*
37+
:triangular_flag_on_post: *as of Version 1.41.2*
3838

3939
<table>
4040
<tr>
@@ -626,13 +626,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
626626

627627
### Use single library
628628

629-
For instance, if you only need azure-mgmt-appservice library from 1.41.1, and wish to limit the dependencies, using following dependency instead in POM.
629+
For instance, if you only need azure-mgmt-appservice library from 1.41.2, and wish to limit the dependencies, using following dependency instead in POM.
630630

631631
```xml
632632
<dependency>
633633
<groupId>com.microsoft.azure</groupId>
634634
<artifactId>azure-mgmt-appservice</artifactId>
635-
<version>1.41.1</version>
635+
<version>1.41.2</version>
636636
</dependency>
637637
<dependency>
638638
<groupId>com.microsoft.azure</groupId>
@@ -663,13 +663,13 @@ WebApp webApp = appServiceClient.webApps()
663663

664664
### Latest stable release
665665

666-
If you are using released builds from 1.41.1, add the following to your POM file:
666+
If you are using released builds from 1.41.2, add the following to your POM file:
667667

668668
```xml
669669
<dependency>
670670
<groupId>com.microsoft.azure</groupId>
671671
<artifactId>azure</artifactId>
672-
<version>1.41.1</version>
672+
<version>1.41.2</version>
673673
</dependency>
674674
```
675675

@@ -696,7 +696,7 @@ If you are using snapshots builds for this repo, add the following repository an
696696
<dependency>
697697
<groupId>com.microsoft.azure</groupId>
698698
<artifactId>azure</artifactId>
699-
<version>1.41.2-SNAPSHOT</version>
699+
<version>1.41.3-SNAPSHOT</version>
700700
</dependency>
701701
```
702702

@@ -708,7 +708,7 @@ If you are using snapshots builds for this repo, add the following repository an
708708

709709
## Upgrading from older versions
710710

711-
If you are migrating your code from 1.41.0 to 1.41.1, you can use these release notes for [preparing your code for 1.41.1 from 1.41.0](./notes/prepare-for-1.41.1.md).
711+
If you are migrating your code from 1.41.1 to 1.41.2, you can use these release notes for [preparing your code for 1.41.2 from 1.41.1](./notes/prepare-for-1.41.2.md).
712712

713713
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:
714714

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

742742
| Version | SHA1 | Remarks |
743743
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
744+
| 1.41.2 | [1.41.2](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.2) | Tagged release for 1.41.2 version of Azure management libraries |
744745
| 1.41.1 | [1.41.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.1) | Tagged release for 1.41.1 version of Azure management libraries |
745746
| 1.41.0 | [1.41.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.0) | Tagged release for 1.41.0 version of Azure management libraries |
746747
| 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 |

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

0 commit comments

Comments
 (0)