aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenton Varda <kenton@cloudflare.com>2023-07-28 09:41:41 -0500
committerKenton Varda <kenton@cloudflare.com>2023-07-28 09:41:41 -0500
commit928c8390d4d562bd32dc79a42eb64e9bdba572d8 (patch)
treecf88b4adaa428adf8db8de046f417840a291d678
parent2cf37dc78e0e574372439f3c5d407ed7daf288f4 (diff)
downloadcapnproto-upstream-release-1.0.0.tar.gz
Set release branch version to 1.0.0.upstream/v1.0.0upstream-release-1.0.0
-rw-r--r--c++/CMakeLists.txt2
-rw-r--r--c++/configure.ac2
-rw-r--r--doc/install.md14
3 files changed, 9 insertions, 9 deletions
diff --git a/c++/CMakeLists.txt b/c++/CMakeLists.txt
index 77a9d0b0..87d74e08 100644
--- a/c++/CMakeLists.txt
+++ b/c++/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.6)
project("Cap'n Proto" CXX)
-set(VERSION 1.0.0-rc1)
+set(VERSION 1.0.0)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
diff --git a/c++/configure.ac b/c++/configure.ac
index dac0939a..b6fe2c9c 100644
--- a/c++/configure.ac
+++ b/c++/configure.ac
@@ -1,6 +1,6 @@
## Process this file with autoconf to produce configure.
-AC_INIT([Capn Proto],[1.0.0-rc1],[capnproto@googlegroups.com],[capnproto-c++])
+AC_INIT([Capn Proto],[1.0.0],[capnproto@googlegroups.com],[capnproto-c++])
AC_CONFIG_SRCDIR([src/capnp/layout.c++])
AC_CONFIG_AUX_DIR([build-aux])
diff --git a/doc/install.md b/doc/install.md
index 87110485..7a096ed2 100644
--- a/doc/install.md
+++ b/doc/install.md
@@ -55,9 +55,9 @@ package from [Apple](https://developer.apple.com/downloads/) or compiler builds
You may download and install the release version of Cap'n Proto like so:
-<pre><code>curl -O <a href="https://capnproto.org/capnproto-c++-0.0.0.tar.gz">https://capnproto.org/capnproto-c++-0.0.0.tar.gz</a>
-tar zxf capnproto-c++-0.0.0.tar.gz
-cd capnproto-c++-0.0.0
+<pre><code>curl -O <a href="https://capnproto.org/capnproto-c++-1.0.0.tar.gz">https://capnproto.org/capnproto-c++-1.0.0.tar.gz</a>
+tar zxf capnproto-c++-1.0.0.tar.gz
+cd capnproto-c++-1.0.0
./configure
make -j6 check
sudo make install</code></pre>
@@ -96,15 +96,15 @@ If you download directly from Git, you will need to have the GNU autotools --
1. Download Cap'n Proto Win32 build:
- <pre><a href="https://capnproto.org/capnproto-c++-win32-0.0.0.zip">https://capnproto.org/capnproto-c++-win32-0.0.0.zip</a></pre>
+ <pre><a href="https://capnproto.org/capnproto-c++-win32-1.0.0.zip">https://capnproto.org/capnproto-c++-win32-1.0.0.zip</a></pre>
-2. Find `capnp.exe`, `capnpc-c++.exe`, and `capnpc-capnp.exe` under `capnproto-tools-win32-0.0.0` in
+2. Find `capnp.exe`, `capnpc-c++.exe`, and `capnpc-capnp.exe` under `capnproto-tools-win32-1.0.0` in
the zip and copy them somewhere.
3. If your `.capnp` files will import any of the `.capnp` files provided by the core project, or
if you use the `stream` keyword (which implicitly imports `capnp/stream.capnp`), then you need
to put those files somewhere where the capnp compiler can find them. To do this, copy the
- directory `capnproto-c++-0.0.0/src` to the location of your choice, then make sure to pass the
+ directory `capnproto-c++-1.0.0/src` to the location of your choice, then make sure to pass the
flag `-I <that location>` to `capnp` when you run it.
If you don't care about C++ support, you can stop here. The compiler exe can be used with plugins
@@ -118,7 +118,7 @@ If you want to use Cap'n Proto in C++ with Visual Studio, do the following:
2. Install [CMake](http://www.cmake.org/) version 3.1 or later.
-3. Use CMake to generate Visual Studio project files under `capnproto-c++-0.0.0` in the zip file.
+3. Use CMake to generate Visual Studio project files under `capnproto-c++-1.0.0` in the zip file.
You can use the CMake UI for this or run this shell command:
cmake -G "Visual Studio 16 2019"