Skip to content

Commit b1603ff

Browse files
prepare readme for 1.41.4 (#1433)
1 parent d3ab974 commit b1603ff

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
@@ -16,7 +16,7 @@ New Management libraries can be identified by namespaces `com.azure.resourcemana
1616

1717
# Azure Management Libraries for Java
1818

19-
This README is based on the released stable version (1.41.3). If you are looking for other releases, see [More Information](#more-information).
19+
This README is based on the released stable version (1.41.4). If you are looking for other releases, see [More Information](#more-information).
2020

2121
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.
2222

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

4040
## Feature Availability and Road Map
41-
:triangular_flag_on_post: *as of Version 1.41.3*
41+
:triangular_flag_on_post: *as of Version 1.41.4*
4242

4343
<table>
4444
<tr>
@@ -630,13 +630,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
630630

631631
### Use single library
632632

633-
For instance, if you only need azure-mgmt-appservice library from 1.41.3, and wish to limit the dependencies, using following dependency instead in POM.
633+
For instance, if you only need azure-mgmt-appservice library from 1.41.4, and wish to limit the dependencies, using following dependency instead in POM.
634634

635635
```xml
636636
<dependency>
637637
<groupId>com.microsoft.azure</groupId>
638638
<artifactId>azure-mgmt-appservice</artifactId>
639-
<version>1.41.3</version>
639+
<version>1.41.4</version>
640640
</dependency>
641641
<dependency>
642642
<groupId>com.microsoft.azure</groupId>
@@ -667,13 +667,13 @@ WebApp webApp = appServiceClient.webApps()
667667

668668
### Latest stable release
669669

670-
If you are using released builds from 1.41.3, add the following to your POM file:
670+
If you are using released builds from 1.41.4, add the following to your POM file:
671671

672672
```xml
673673
<dependency>
674674
<groupId>com.microsoft.azure</groupId>
675675
<artifactId>azure</artifactId>
676-
<version>1.41.3</version>
676+
<version>1.41.4</version>
677677
</dependency>
678678
```
679679

@@ -700,7 +700,7 @@ If you are using snapshots builds for this repo, add the following repository an
700700
<dependency>
701701
<groupId>com.microsoft.azure</groupId>
702702
<artifactId>azure</artifactId>
703-
<version>1.41.4-SNAPSHOT</version>
703+
<version>1.41.5-SNAPSHOT</version>
704704
</dependency>
705705
```
706706

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

713713
## Upgrading from older versions
714714

715-
If you are migrating your code from 1.41.2 to 1.41.3, you can use these release notes for [preparing your code for 1.41.3 from 1.41.2](./notes/prepare-for-1.41.3.md).
715+
If you are migrating your code from 1.41.3 to 1.41.4, you can use these release notes for [preparing your code for 1.41.4 from 1.41.3](./notes/prepare-for-1.41.4.md).
716716

717717
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:
718718

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

746746
| Version | SHA1 | Remarks |
747747
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
748+
| 1.41.4 | [1.41.4](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.4) | Tagged release for 1.41.4 version of Azure management libraries |
748749
| 1.41.3 | [1.41.3](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.3) | Tagged release for 1.41.3 version of Azure management libraries |
749750
| 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 |
750751
| 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 |

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

0 commit comments

Comments
 (0)