Skip to content

Commit

Permalink
Merge pull request #82 from poacpm/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Ken Matsui authored Feb 2, 2019
2 parents da77441 + 32d6629 commit 0bb4ff3
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/en/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/ja/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 をご覧下さい
Expand Down
4 changes: 2 additions & 2 deletions include/poac/io/file/yaml.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}

Expand Down Expand Up @@ -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<std::string, YAML::Node> mp;
Expand Down
2 changes: 1 addition & 1 deletion include/poac/subcmd/install.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}

Expand Down
2 changes: 1 addition & 1 deletion include/poac/util/ftemplate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions poac.yml
Original file line number Diff line number Diff line change
@@ -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++"
Expand All @@ -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
Expand Down

0 comments on commit 0bb4ff3

Please sign in to comment.