[ANNOUNCE] Apache Flink 1.10.0, release candidate #0

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ANNOUNCE] Apache Flink 1.10.0, release candidate #0

Gary Yao-4
Hi all,

RC0 for Apache Flink 1.10.0 has been created. This has all the artifacts
that
we would typically have for a release, except for a source code tag and a PR
for the release announcement.

This preview-only RC is created only to drive the current testing efforts,
and
no official vote will take place. It includes the following:

* the preview source release and binary convenience releases [1], which are
signed with the key with fingerprint
BB137807CEFBE7DD2616556710B12A1F89C115E8
[2],
* all artifacts that would normally be deployed to the Maven Central
Repository [3]

To test with these artifacts, you can create a settings.xml file with the
content shown below [4]. This settings file can be referenced in your maven
commands via --settings /path/to/settings.xml. This is useful for creating a
quickstart project based on the staged release and also for building against
the staged jars.

Happy testing!

Best,
Gary

[1] https://dist.apache.org/repos/dist/dev/flink/flink-1.10.0-rc0/
[2] https://dist.apache.org/repos/dist/release/flink/KEYS
[3] https://repository.apache.org/content/repositories/orgapacheflink-1318/
[4]
<settings>
  <activeProfiles>
    <activeProfile>flink-1.10.0</activeProfile>
  </activeProfiles>
  <profiles>
    <profile>
      <id>flink-1.10.0</id>
      <repositories>
        <repository>
          <id>flink-1.10.0</id>
          <url>
https://repository.apache.org/content/repositories/orgapacheflink-1318/
</url>
        </repository>
        <repository>
          <id>archetype</id>
          <url>
https://repository.apache.org/content/repositories/orgapacheflink-1318/
</url>
        </repository>
      </repositories>
    </profile>
  </profiles>
</settings>