Skip to content

Commit 0273148

Browse files
committed
replaced references to cppalliance/json with references to boostorg/json where appropriate
1 parent 0a7860f commit 0273148

38 files changed

+47
-50
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@
44

55
Here is minimal sequence of steps required to prepare development environment:
66

7-
1. Download Boost superproject
8-
2. Download Boost.JSON
9-
3. Bootstrap Boost
10-
4. Build Boost.JSON tests, benchmarks and examples
7+
1. Download Boost
8+
2. Bootstrap Boost
9+
3. Build Boost.JSON tests, benchmarks and examples
1110

1211
```
1312
git clone --recurse-submodules --jobs 8 https://github.com/boostorg/boost.git
14-
cd boost/libs
15-
git clone --recurse-submodules https://github.com/cppalliance/json.git
16-
cd ..
13+
cd boost
1714
./bootstrap.sh
1815
./b2 headers
1916
cd libs/json

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![Boost.JSON](https://raw.githubusercontent.com/CPPAlliance/json/master/doc/images/repo-logo-3.png)](http://master.json.cpp.al/)
1+
[![Boost.JSON](https://raw.githubusercontent.com/CPPAlliance/json/master/doc/images/repo-logo-3.png)](https://www.boost.org/doc/libs/release/libs/json)
22

3-
Branch | [`master`](https://github.com/CPPAlliance/json/tree/master) | [`develop`](https://github.com/CPPAlliance/json/tree/develop) |
3+
Branch | [`master`](https://github.com/boostorg/json/tree/master) | [`develop`](https://github.com/boostorg/json/tree/develop) |
44
--------------- | ----------------------------------------------------------- | ------------------------------------------------------------- |
55
[Azure](https://azure.microsoft.com/en-us/services/devops/pipelines/) | [![Build Status](https://img.shields.io/azure-devops/build/vinniefalco/2571d415-8cc8-4120-a762-c03a8eda0659/8/master)](https://vinniefalco.visualstudio.com/json/_build/latest?definitionId=5&branchName=master) | [![Build Status](https://img.shields.io/azure-devops/build/vinniefalco/2571d415-8cc8-4120-a762-c03a8eda0659/8/develop)](https://vinniefalco.visualstudio.com/json/_build/latest?definitionId=8&branchName=develop)
66
Docs | [![Documentation](https://img.shields.io/badge/docs-master-brightgreen.svg)](https://www.boost.org/doc/libs/master/libs/json/) | [![Documentation](https://img.shields.io/badge/docs-develop-brightgreen.svg)](https://www.boost.org/doc/libs/develop/libs/json/)

doc/Jamfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Distributed under the Boost Software License, Version 1.0. (See accompanying
66
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77
#
8-
# Official repository: https://github.com/cppalliance/json
8+
# Official repository: https://github.com/boostorg/json
99
#
1010

1111
project json/doc ;

doc/javadoc.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Distributed under the Boost Software License, Version 1.0. (See accompanying
55
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66
//
7-
// Official repository: https://github.com/cppalliance/json
7+
// Official repository: https://github.com/boostorg/json
88
//
99

1010
----------------------------- DOCUMENTATION STYLE GUIDE -------------------------------
@@ -591,4 +591,4 @@ a list of relevant named requirements that this type meets.
591591
592592
{See Also}]
593593
594-
*/
594+
*/

doc/library-detail.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
http://master.json.cpp.al/[image:https://raw.githubusercontent.com/CPPAlliance/json/master/doc/images/repo-logo-3.png[Boost.JSON]]
1+
https://www.boost.org/doc/libs/release/libs/json/[image:https://raw.githubusercontent.com/CPPAlliance/json/master/doc/images/repo-logo-3.png[Boost.JSON]]
22

33
[width="100%",cols="12%,43%,45%",options="header",]
44
|===
5-
|Branch |https://github.com/CPPAlliance/json/tree/master[`master`]
6-
|https://github.com/CPPAlliance/json/tree/develop[`develop`]
5+
|Branch |https://github.com/boostorg/json/tree/master[`master`]
6+
|https://github.com/boostorg/json/tree/develop[`develop`]
77
|https://azure.microsoft.com/en-us/services/devops/pipelines/[Azure]
88
|https://vinniefalco.visualstudio.com/json/_build/latest?definitionId=5&branchName=master[image:https://img.shields.io/azure-devops/build/vinniefalco/2571d415-8cc8-4120-a762-c03a8eda0659/8/master[Build
99
Status]]

doc/qbk/allocators/background.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Distributed under the Boost Software License, Version 1.0. (See accompanying
55
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66

7-
Official repository: https://github.com/cppalliance/json
7+
Official repository: https://github.com/boostorg/json
88
]
99

1010
[/-----------------------------------------------------------------------------]

doc/qbk/allocators/overview.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Distributed under the Boost Software License, Version 1.0. (See accompanying
66
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77

8-
Official repository: https://github.com/cppalliance/json
8+
Official repository: https://github.com/boostorg/json
99
]
1010

1111
[/-----------------------------------------------------------------------------]

doc/qbk/allocators/pmr.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Distributed under the Boost Software License, Version 1.0. (See accompanying
55
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66

7-
Official repository: https://github.com/cppalliance/json
7+
Official repository: https://github.com/boostorg/json
88
]
99

1010
[/-----------------------------------------------------------------------------]

doc/qbk/allocators/storage_ptr.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Distributed under the Boost Software License, Version 1.0. (See accompanying
55
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66

7-
Official repository: https://github.com/cppalliance/json
7+
Official repository: https://github.com/boostorg/json
88
]
99

1010
[/-----------------------------------------------------------------------------]

doc/qbk/benchmarks.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Distributed under the Boost Software License, Version 1.0. (See accompanying
55
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66

7-
Official repository: https://github.com/cppalliance/json
7+
Official repository: https://github.com/boostorg/json
88
]
99

1010
[section Benchmarks]

0 commit comments

Comments
 (0)