Skip to content

Commit 447fa0e

Browse files
committed
update github organization name (InfraBlockchain)
1 parent b41b38c commit 447fa0e

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
url = https://github.com/EOSIO/magic_get
2727
[submodule "libraries/fc"]
2828
path = libraries/fc
29-
url = https://github.com/YosemiteLabs/fc
29+
url = https://github.com/InfraBlockchain/fc
3030
[submodule "libraries/wabt"]
3131
path = libraries/wabt
3232
url = https://github.com/EOSIO/wabt

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ set( CMAKE_CXX_EXTENSIONS ON )
3636
set( CXX_STANDARD_REQUIRED ON)
3737

3838
set(VERSION_MAJOR 1)
39-
set(VERSION_MINOR 6)
40-
set(VERSION_PATCH 3)
39+
set(VERSION_MINOR 0)
40+
set(VERSION_PATCH 0)
4141

4242
if(VERSION_SUFFIX)
4343
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")

CMakeModules/installer.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ else()
4141
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON)
4242
set(CPACK_INCLUDE_TOPLEVEL_DIRECTORY TRUE)
4343
set(CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION TRUE)
44-
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/YosemiteLabs/infrablockchain")
44+
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/I/infrablockchain")
4545
endif()
4646

4747
include(CPack)

Docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG branch=master
33
ARG native_token_symbol=DUSD
44
ARG native_token_precision=4
55

6-
RUN git clone -b $branch https://github.com/YosemiteLabs/infrablockchain.git --recursive \
6+
RUN git clone -b $branch https://github.com/InfraBlockchain/infrablockchain.git --recursive \
77
&& cd infrablockchain && echo "$branch:$(git rev-parse HEAD)" > /etc/infrablockchain-version \
88
&& cmake -H. -B"/tmp/build" -GNinja -DCMAKE_BUILD_TYPE=Release -DWASM_ROOT=/opt/wasm -DCMAKE_CXX_COMPILER=clang++ \
99
-DCMAKE_C_COMPILER=clang -DCMAKE_INSTALL_PREFIX=/tmp/build -DBUILD_MONGO_DB_PLUGIN=true \

Docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Simple and fast setup of InfraBlockchain on Docker is also available.
1515
## Build infrablockchain image
1616

1717
```bash
18-
git clone https://github.com/YosemiteLabs/infrablockchain --recursive --depth 1
18+
git clone https://github.com/InfraBlockchain/infrablockchain --recursive --depth 1
1919
cd infrablockchain/Docker
2020
docker build . -t yosemitex/yosemite
2121
```

Docker/dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG branch=master
33
ARG native_token_symbol=DUSD
44
ARG native_token_precision=4
55

6-
RUN git clone -b $branch https://github.com/YosemiteLabs/infrablockchain.git --recursive \
6+
RUN git clone -b $branch https://github.com/InfraBlockchain/infrablockchain.git --recursive \
77
&& cd infrablockchain && echo "$branch:$(git rev-parse HEAD)" > /etc/infrablockchain-version \
88
&& cmake -H. -B"/opt/infrablockchain" -GNinja -DCMAKE_BUILD_TYPE=Release -DWASM_ROOT=/opt/wasm -DCMAKE_CXX_COMPILER=clang++ \
99
-DCMAKE_C_COMPILER=clang -DCMAKE_INSTALL_PREFIX=/opt/infrablockchain -DSecp256k1_ROOT_DIR=/usr/local -DBUILD_MONGO_DB_PLUGIN=true \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ even if it had been advised of the possibility of damage.
7676

7777

7878
## InfraBlockchain Explorer
79-
1. [InfraBlockchain Explorer Backend](https://github.com/YosemiteLabs/yosemite-explorer-backend)
80-
1. [InfraBlockchain Explorer Web Frontend](https://github.com/YosemiteLabs/yosemite-explorer-web)
79+
1. [InfraBlockchain Explorer Backend](https://github.com/InfraBlockchain/yosemite-explorer-backend)
80+
1. [InfraBlockchain Explorer Web Frontend](https://github.com/InfraBlockchain/yosemite-explorer-web)
8181

8282

8383
## Client Library
84-
1. [Java Client Library](https://github.com/YosemiteLabs/yosemite-j)
84+
1. [Java Client Library](https://github.com/InfraBlockchain/yosemite-j)
8585

8686

8787
## Supported Operating Systems

contracts/sys.identity/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ INFRABLOCKCHAIN Identity Codes
4848
#define INFRABLOCKCHAIN_ID_ACC_STATE_BLACKLISTED_NTOKEN_RECEIVE 0x00000004
4949
#define INFRABLOCKCHAIN_ID_ACC_STATE_MAX 0x00000007
5050
```
51-
@see https://github.com/YosemiteLabs/infrablockchain/blob/master/contracts/infrablockchainlib/identity.hpp
51+
@see https://github.com/InfraBlockchain/infrablockchain/blob/master/contracts/infrablockchainlib/identity.hpp
5252
5353
Managing Account Identity Info (including KYC)
5454
---

eosio_mirror.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Mirroring EOSIO/eos to YosemiteLabs/yosemite-public-blockchain
2-
https://github.com/YosemiteLabs/yosemite-public-blockchain/issues/94
1+
# Mirroring EOSIO/eos to InfraBlockchain/yosemite-public-blockchain
2+
https://github.com/InfraBlockchain/yosemite-public-blockchain/issues/94
33

4-
We can simply mirror EOSIO by pushing from EOSIO/eos:master branch to YosemiteLabs/infrablockchain:eos-master branch. Don't forget our branch for EOSIO mirroring is <b>eosio-master</b>.
4+
We can simply mirror EOSIO by pushing from EOSIO/eos:master branch to InfraBlockchain/infrablockchain:eos-master branch. Don't forget our branch for EOSIO mirroring is <b>eosio-master</b>.
55

66
```console
77
git clone https://github.com/EOSIO/eos
88
cd eos
9-
#git push https://github.com/YosemiteLabs/infrablockchain master:eosio-master
9+
#git push https://github.com/InfraBlockchain/infrablockchain master:eosio-master
1010

11-
git remote add infrablockchain https://github.com/YosemiteLabs/infrablockchain
11+
git remote add infrablockchain https://github.com/InfraBlockchain/infrablockchain
1212
#git fetch
1313
git checkout origin/master -b eosio-master
1414
git push infrablockchain eosio-master

infrablockchain_build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
############################################################################################
33
# This is the InfraBlockchain automated install script for Linux and Mac OS.
4-
# This file was downloaded from https://github.com/YosemiteLabs/infrablockchain
4+
# This file was downloaded from https://github.com/InfraBlockchain/infrablockchain
55
#
66
# This software is available under the following terms:
77
#
@@ -25,7 +25,7 @@
2525
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2626
# THE SOFTWARE.
2727
#
28-
# https://github.com/YosemiteLabs/infrablockchain/blob/master/LICENSE
28+
# https://github.com/InfraBlockchain/infrablockchain/blob/master/LICENSE
2929
############################################################################################
3030

3131
txtbld=$(tput bold)
@@ -55,4 +55,4 @@ printf "\\n\\tInfraBlockchain has been successfully built. %02d:%02d:%02d\\n\\n"
5555

5656
printf "\\tFor more information:\\n"
5757
printf "\\tInfraBlockchain website: https://infrablockchain.com\\n"
58-
printf "\\tInfraBlockchain github: https://github.com/YosemiteLabs/infrablockchain\\n\\n\\n"
58+
printf "\\tInfraBlockchain github: https://github.com/InfraBlockchain/infrablockchain\\n\\n\\n"

0 commit comments

Comments
 (0)