diff --git a/CMakeLists.txt b/CMakeLists.txt index ff923dfd6..42fd7c345 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ project(poac) # Preprocessor definitions add_definitions( -DPOAC_PROJECT_ROOT="${CMAKE_SOURCE_DIR}" ) -add_definitions( -DPOAC_VERSION="0.1.0" ) +add_definitions( -DPOAC_VERSION="0.1.1" ) add_definitions( -fdiagnostics-color -Wall -Wextra -Werror ) # Check of c++17 diff --git a/docs/en/README.md b/docs/en/README.md index 109d02246..0d122eca8 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -2,9 +2,9 @@ Poac is the C/C++ package manager. -Poac can downloads project's dependencies and compiles project, creates package, and uploads it to [poac.pm](https://poac.pm). +Poac can downloads project's dependencies and compiles project, creates package, and uploads it to [poac.pm](https://poac.io). -[poac.pm](https://poac.pm) is the package registry, searching packages and management them, etc. can be done. +[poac.pm](https://poac.io) is the package registry, searching packages and management them, etc. can be done. #### Sections diff --git a/docs/ja/README.md b/docs/ja/README.md index 9cfe2be69..84e54f913 100644 --- a/docs/ja/README.md +++ b/docs/ja/README.md @@ -2,9 +2,9 @@ poac は C/C++ 言語向けのパッケージマネージャです。 -poac はプロジェクトの依存関係を解決しつつパッケージをインストールしたり、それらをコンパイルしたり、パッケージを作成し、それを [poac.pm](https://poac.pm) に公開したりすることができます。 +poac はプロジェクトの依存関係を解決しつつパッケージをインストールしたり、それらをコンパイルしたり、パッケージを作成し、それを [poac.pm](https://poac.io) に公開したりすることができます。 -[poac.pm](https://poac.pm) はパッケージレジストリで、パッケージを検索することや、それらを管理することなどができます。 +[poac.pm](https://poac.io) はパッケージレジストリで、パッケージを検索することや、それらを管理することなどができます。 > Note: 本ソフトウェアはIPA未踏IT人材発掘・育成事業の2018年度採択プロジェクトとして開発されています。 詳細は https://www.ipa.go.jp/jinzai/mitou/2018/gaiyou_t-2 をご覧下さい diff --git a/include/poac/io/file/yaml.hpp b/include/poac/io/file/yaml.hpp index 9074cae24..74ee778ba 100644 --- a/include/poac/io/file/yaml.hpp +++ b/include/poac/io/file/yaml.hpp @@ -77,7 +77,7 @@ namespace poac::io::file::yaml { catch (const YAML::BadConversion& e) { throw exception::error( "Required key `" + arg + "` does not exist in poac.yml.\n" - "Please refer to https://docs.poac.pm"); + "Please refer to https://docs.poac.io"); } } @@ -125,7 +125,7 @@ namespace poac::io::file::yaml { throw exception::error( "Required key `" + std::string(*result) + "` does not exist in poac.yml.\n" - "Please refer to https://docs.poac.pm"); + "Please refer to https://docs.poac.io"); } else { std::map mp; diff --git a/include/poac/subcmd/install.hpp b/include/poac/subcmd/install.hpp index e66425ae9..b42a8a778 100644 --- a/include/poac/subcmd/install.hpp +++ b/include/poac/subcmd/install.hpp @@ -251,7 +251,7 @@ namespace poac::subcmd { else if (argv.empty()) { // 引数から指定しておらず(poac install),poac.ymlにdeps keyが存在しない throw exception::error( "Required key `deps` does not exist in poac.yml.\n" - "Please refer to https://docs.poac.pm"); + "Please refer to https://docs.poac.io"); } } diff --git a/include/poac/util/ftemplate.hpp b/include/poac/util/ftemplate.hpp index c208d4167..7120e7912 100644 --- a/include/poac/util/ftemplate.hpp +++ b/include/poac/util/ftemplate.hpp @@ -38,7 +38,7 @@ namespace poac::util::ftemplate { "This project uses [poac](https://github.com/poacpm/poac).\n" "\n" "For more information on poac please see below:\n" - "* https://poac.pm\n" + "* https://poac.io\n" "* https://github.com/poacpm\n" "* https://github.com/poacpm/poac#readme\n" "\n" diff --git a/poac.yml b/poac.yml index 6147edbad..1d015cca0 100644 --- a/poac.yml +++ b/poac.yml @@ -1,7 +1,7 @@ # Package name name: poac # Package version -version: 0.1.0 +version: 0.1.1 # 98, 03, 11(Include TR1), 14, 17, 20 cpp_version: 17 description: "poac is a package manager for C++" @@ -11,7 +11,7 @@ owners: - matken11235 license: GPL-3.0 links: - homepage: "https://poac.pm" + homepage: "https://poac.io" github: "https://github.com/poacpm/poac" # Describe deps as dependencies