From f09d37c4377a490885b983e211cb5392f9a4e1f3 Mon Sep 17 00:00:00 2001 From: Suzanne Millstein Date: Tue, 1 Nov 2022 09:15:53 -0700 Subject: [PATCH] new release 3.27.0 --- docs/checker-framework-webpage.html | 8 ++++---- docs/examples/MavenExample/pom.xml | 2 +- docs/manual/external-tools.tex | 26 +++++++++++++------------- docs/manual/introduction.tex | 2 +- docs/manual/manual.tex | 4 ++-- 5 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/checker-framework-webpage.html b/docs/checker-framework-webpage.html index 4e0400f39e5..45953f9327a 100644 --- a/docs/checker-framework-webpage.html +++ b/docs/checker-framework-webpage.html @@ -30,8 +30,8 @@

The Checker Framework

Installation instructions and tutorial.
  • - Download: checker-framework-3.26.0.zip - (3 Oct 2022); + Download: checker-framework-3.27.0.zip + (1 Nov 2022); includes source, platform-independent binary, tests, and documentation.
    Then, see the installation @@ -93,7 +93,7 @@

    The Checker Framework

    the .class file. The tools support both Java 5 declaration annotations and Java 8 type annotations.
      -
    • annotation-tools-3.26.0.zip (03 Oct 2022) +
    • annotation-tools-3.27.0.zip (01 Nov 2022)
    • source code repository
    • @@ -223,7 +223,7 @@

      Mailing lists


      -Last updated: 3 Oct 2022 +Last updated: 1 Nov 2022

      diff --git a/docs/examples/MavenExample/pom.xml b/docs/examples/MavenExample/pom.xml index cca37aebece..33f3b0a4982 100644 --- a/docs/examples/MavenExample/pom.xml +++ b/docs/examples/MavenExample/pom.xml @@ -14,7 +14,7 @@ UTF-8 ${com.google.errorprone:javac:jar} - 3.26.0 + 3.27.0 diff --git a/docs/manual/external-tools.tex b/docs/manual/external-tools.tex index cd922665270..cfa1d2cfac2 100644 --- a/docs/manual/external-tools.tex +++ b/docs/manual/external-tools.tex @@ -118,7 +118,7 @@ \begin{Verbatim} dependencies { ... existing dependencies... - ext.checkerFrameworkVersion = '3.26.0' + ext.checkerFrameworkVersion = '3.27.0' implementation "org.checkerframework:checker-qual-android:${checkerFrameworkVersion}" // or if you use no annotations in source code the above line could be // compileOnly "org.checkerframework:checker-qual-android:${checkerFrameworkVersion}" @@ -191,7 +191,7 @@ \begin{Verbatim} dependencies { ... existing dependencies... - ext.checkerFrameworkVersion = '3.26.0' + ext.checkerFrameworkVersion = '3.27.0' implementation "org.checkerframework:checker-qual-android:${checkerFrameworkVersion}" // or if you use no annotations in source code the above line could be // compileOnly "org.checkerframework:checker-qual-android:${checkerFrameworkVersion}" @@ -341,13 +341,13 @@ \begin{Verbatim} prebuilt_jar( name = 'checker-framework', - binary_jar = 'checker-3.26.0.jar', + binary_jar = 'checker-3.27.0.jar', visibility = [ 'PUBLIC' ] ) prebuilt_jar( name = 'checker-qual', - binary_jar = 'checker-qual-3.26.0.jar', + binary_jar = 'checker-qual-3.27.0.jar', visibility = [ 'PUBLIC' ] ) @@ -411,21 +411,21 @@ use the last one. % Is the last one required for Cygwin, as well as for the Windows command shell? Adjust the pathnames if you have installed the Checker Framework somewhere -other than \<\${HOME}/checker-framework-3.26.0/>. +other than \<\${HOME}/checker-framework-3.27.0/>. \begin{itemize} \item Option 1: Add directory - \code{.../checker-framework-3.26.0/checker/bin} to your path, \emph{before} any other + \code{.../checker-framework-3.27.0/checker/bin} to your path, \emph{before} any other directory that contains a \ executable. If you are using the bash shell, a way to do this is to add the following to your \verb|~/.profile| (or alternately \verb|~/.bash_profile| or \verb|~/.bashrc|) file: \begin{Verbatim} - export CHECKERFRAMEWORK=${HOME}/checker-framework-3.26.0 + export CHECKERFRAMEWORK=${HOME}/checker-framework-3.27.0 export PATH=${CHECKERFRAMEWORK}/checker/bin:${PATH} \end{Verbatim} @@ -446,7 +446,7 @@ file: % No Windows example because this doesn't work under Windows. \begin{Verbatim} - export CHECKERFRAMEWORK=${HOME}/checker-framework-3.26.0 + export CHECKERFRAMEWORK=${HOME}/checker-framework-3.27.0 alias javacheck='$CHECKERFRAMEWORK/checker/bin/javac' \end{Verbatim} @@ -468,11 +468,11 @@ \begin{Verbatim} # Unix - export CHECKERFRAMEWORK=${HOME}/checker-framework-3.26.0 + export CHECKERFRAMEWORK=${HOME}/checker-framework-3.27.0 alias javacheck='java -jar "$CHECKERFRAMEWORK/checker/dist/checker.jar"' # Windows - set CHECKERFRAMEWORK = C:\Program Files\checker-framework-3.26.0\ + set CHECKERFRAMEWORK = C:\Program Files\checker-framework-3.27.0\ doskey javacheck=java -jar "%CHECKERFRAMEWORK%\checker\dist\checker.jar" $* \end{Verbatim} @@ -551,9 +551,9 @@ \begin{itemize} \item \: \url{https://search.maven.org/artifact/com.google.errorprone/javac/9%2B181-r4173-1/jar} -\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.26.0/checker-qual-3.26.0.jar} -\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.26.0/checker-util-3.26.0.jar} -\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker/3.26.0/checker-3.26.0-all.jar} +\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker-qual/3.27.0/checker-qual-3.27.0.jar} +\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker-util/3.27.0/checker-util-3.27.0.jar} +\item \: \url{https://repo1.maven.org/maven2/org/checkerframework/checker/3.27.0/checker-3.27.0-all.jar} \end{itemize} Different arguments to \ are required for JDK 8 diff --git a/docs/manual/introduction.tex b/docs/manual/introduction.tex index dc1c96e477e..03d9ca710d2 100644 --- a/docs/manual/introduction.tex +++ b/docs/manual/introduction.tex @@ -205,7 +205,7 @@ %BEGIN LATEX \\ %END LATEX - \url{https://checkerframework.org/checker-framework-3.26.0.zip} + \url{https://checkerframework.org/checker-framework-3.27.0.zip} \item Unzip it to create a \code{checker-framework-\ReleaseVersion{}} directory. diff --git a/docs/manual/manual.tex b/docs/manual/manual.tex index e9fd465a573..07c4e889169 100644 --- a/docs/manual/manual.tex +++ b/docs/manual/manual.tex @@ -4,8 +4,8 @@ \title{The Checker Framework Manual: \\ Custom pluggable types for Java} \author{\url{https://checkerframework.org/}} -\newcommand{\ReleaseVersion}{3.26.0} -\newcommand{\ReleaseInfo}{3.26.0 (3 Oct 2022)} +\newcommand{\ReleaseVersion}{3.27.0} +\newcommand{\ReleaseInfo}{3.27.0 (1 Nov 2022)} \date{Version \ReleaseInfo{}} \begin{document}