Skip to content

Commit 27a27bf

Browse files
committed
Change the remaining references to ReasonProject -> ReasonNativeProject
1 parent 603eba2 commit 27a27bf

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ before_install:
88
- eval `opam config env`
99
- opam update
1010
before_script:
11-
- opam pin add -y ReasonProject .
11+
- opam pin add -y ReasonNativeProject .
1212
script:
1313
- ./test-with-version.sh "$OCAML_VERSION"
1414
- git diff --exit-code

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ release:
88
git commit -m "Version $(version)"
99
git tag -a $(version) -m "Version $(version)."
1010
# Push first the objects, then the tag.
11-
git push "git@github.com:reasonml/ReasonProject.git"
12-
git push "git@github.com:reasonml/ReasonProject.git" tag $(version)
11+
git push "git@github.com:reasonml/ReasonNativeProject.git"
12+
git push "git@github.com:reasonml/ReasonNativeProject.git" tag $(version)
1313

1414
clean:
1515
ocamlbuild -clean

opam

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
opam-version: "1.2"
2-
name: "ReasonProject"
2+
name: "ReasonNativeProject"
33
version: "0.0.1"
44
maintainer: "Jordan Walke <jordojw@gmail.com>"
55
authors: [
66
"Jordan Walke <jordojw@gmail.com>"
77
"Maxwell Bernstein <max@bernsteinbear.com>"
88
]
99
license: "BSD"
10-
homepage: "https://github.com/reasonml/ReasonProject"
11-
doc: "https://reasonml.github.io/ReasonProject/"
12-
bug-reports: "https://github.com/reasonml/ReasonProject/issues"
13-
dev-repo: "git://github.com/reasonml/ReasonProject.git"
10+
homepage: "https://github.com/reasonml/ReasonNativeProject"
11+
doc: "https://reasonml.github.io/ReasonNativeProject/"
12+
bug-reports: "https://github.com/reasonml/ReasonNativeProject/issues"
13+
dev-repo: "git://github.com/reasonml/ReasonNativeProject.git"
1414
tags: [ "reason" "example" ]
1515
substs: [ "pkg/META" ]
1616
build: [

pkg/META.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
22

33
version = "%{version}%"
4-
description = "ReasonProject: Example project for Reason"
4+
description = "ReasonNativeProject: Example project for Reason"
55

6-
archive(byte) = "ReasonProject.cma"
7-
archive(native) = "ReasonProject.cmxa"
6+
archive(byte) = "ReasonNativeProject.cma"
7+
archive(native) = "ReasonNativeProject.cmxa"

pkg/build.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let () =
1010
%% of_list files)
1111
in
1212
let build = Pkg.build ~cmd () in
13-
Pkg.describe "ReasonProject" ~build ~change_logs:[] ~licenses:[] ~readmes:[] @@ fun c ->
13+
Pkg.describe "ReasonNativeProject" ~build ~change_logs:[] ~licenses:[] ~readmes:[] @@ fun c ->
1414
Ok [
1515
Pkg.lib "pkg/META";
1616
Pkg.bin ~auto:true ~dst:"test" "src/Test";

test-with-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ make clean
88
opam switch "${OCAML_VERSION}"
99
eval `opam config env`
1010
opam update
11-
opam pin add -y ReasonProject .
11+
opam pin add -y ReasonNativeProject .
1212
make
1313
./Test.native
1414
git diff --exit-code

0 commit comments

Comments
 (0)