diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | include/modules.h | 3 | ||||
-rwxr-xr-x | src/version.sh | 2 |
4 files changed, 4 insertions, 5 deletions
@@ -20,8 +20,6 @@ If you encounter any bugs then [please file an issue](https://github.com/inspirc ## Installation -**The `master` branch contains the latest development version. If you are running a server then you probably want the `insp20` branch. You can obtain this from [the releases page](https://github.com/inspircd/inspircd/releases) or by running `git checkout $(git describe --abbrev=0 --tags insp20)` if you are installing via Git.** - Most InspIRCd users running a UNIX-like system build from source. A guide about how to do this is available on [the InspIRCd wiki](https://wiki.inspircd.org/Installation_From_Source). Building from source on Windows is generally not recommended but [a guide is available](https://github.com/inspircd/inspircd/blob/master/win/README.txt) if you wish to do this. @@ -244,7 +244,7 @@ affect the running of your server. It is recommended that you use a stable version instead. You can obtain the latest stable version from http://www.inspircd.org/ or by -running `<|GREEN git checkout $(git describe --abbrev=0 --tags insp20)|>` if you are +running `<|GREEN git checkout $(git describe --abbrev=0 --tags insp3)|>` if you are installing from Git. EOW if (!prompt_bool $interactive, 'I understand this warning and want to continue anyway.', $opt_development // 0) { diff --git a/include/modules.h b/include/modules.h index b4f13c6b7..b8c860fbc 100644 --- a/include/modules.h +++ b/include/modules.h @@ -99,7 +99,8 @@ struct ModResult { /** InspIRCd major version. * 1.2 -> 102; 2.1 -> 201; 2.12 -> 212 */ -#define INSPIRCD_VERSION_MAJ 202 +#define INSPIRCD_VERSION_MAJ 300 + /** InspIRCd API version. * If you change any API elements, increment this value. This counter should be * reset whenever the major version is changed. Modules can use these two values diff --git a/src/version.sh b/src/version.sh index 3c9a04b6e..5cdca4090 100755 --- a/src/version.sh +++ b/src/version.sh @@ -1,2 +1,2 @@ #!/bin/sh -echo "InspIRCd-3.0.0-a10" +echo "InspIRCd-3.0.0-rc1" |