Skip to content

Commit 41b73ce

Browse files
readme for 1.41.1 (#1392)
1 parent 4731448 commit 41b73ce

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.41.0). If you are looking for other releases, see [More Information](#more-information).
13+
This README is based on the released stable version (1.41.1). 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.41.0*
35+
:triangular_flag_on_post: *as of Version 1.41.1*
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.41.0, 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.41.1, 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.41.0</version>
633+
<version>1.41.1</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.41.0, add the following to your POM file:
664+
If you are using released builds from 1.41.1, 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.41.0</version>
670+
<version>1.41.1</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.41.1-SNAPSHOT</version>
697+
<version>1.41.2-SNAPSHOT</version>
698698
</dependency>
699699
```
700700

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

707707
## Upgrading from older versions
708708

709-
If you are migrating your code from 1.40.0 to 1.41.0, you can use these release notes for [preparing your code for 1.41.0 from 1.40.0](./notes/prepare-for-1.41.0.md).
709+
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).
710710

711711
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:
712712

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

740740
| Version | SHA1 | Remarks |
741741
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
742+
| 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 |
742743
| 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 |
743744
| 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 |
744745
| 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 |

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

0 commit comments

Comments
 (0)