Skip to content

Commit 4b8966a

Browse files
committed
bump a new release
1 parent 190247d commit 4b8966a

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

jscomp/common/bs_version.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
* You should have received a copy of the GNU Lesser General Public License
2323
* along with this program; if not, write to the Free Software
2424
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
25-
let version = "3.0.1"
25+
let version = "3.1.0"
2626
let header =
27-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
27+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
2828
let package_name = "bs-platform"
2929

lib/bsb.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ end = struct
5555
* You should have received a copy of the GNU Lesser General Public License
5656
* along with this program; if not, write to the Free Software
5757
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
58-
let version = "3.0.1"
58+
let version = "3.1.0"
5959
let header =
60-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
60+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
6161
let package_name = "bs-platform"
6262

6363
end

lib/bsb_helper.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ end = struct
177177
* You should have received a copy of the GNU Lesser General Public License
178178
* along with this program; if not, write to the Free Software
179179
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
180-
let version = "3.0.1"
180+
let version = "3.1.0"
181181
let header =
182-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
182+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
183183
let package_name = "bs-platform"
184184

185185
end

lib/bsdep.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ end = struct
5555
* You should have received a copy of the GNU Lesser General Public License
5656
* along with this program; if not, write to the Free Software
5757
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
58-
let version = "3.0.1"
58+
let version = "3.1.0"
5959
let header =
60-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
60+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
6161
let package_name = "bs-platform"
6262

6363
end

lib/bsppx.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13707,9 +13707,9 @@ end = struct
1370713707
* You should have received a copy of the GNU Lesser General Public License
1370813708
* along with this program; if not, write to the Free Software
1370913709
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
13710-
let version = "3.0.1"
13710+
let version = "3.1.0"
1371113711
let header =
13712-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
13712+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
1371313713
let package_name = "bs-platform"
1371413714

1371513715
end

lib/js/belt_Result.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,29 +57,29 @@ function getWithDefault(opt, $$default) {
5757

5858
function isOk(param) {
5959
if (param.tag) {
60-
return /* false */0;
60+
return false;
6161
} else {
62-
return /* true */1;
62+
return true;
6363
}
6464
}
6565

6666
function isError(param) {
6767
if (param.tag) {
68-
return /* true */1;
68+
return true;
6969
} else {
70-
return /* false */0;
70+
return false;
7171
}
7272
}
7373

7474
function eqU(a, b, f) {
7575
if (a.tag) {
7676
if (b.tag) {
77-
return /* true */1;
77+
return true;
7878
} else {
79-
return /* false */0;
79+
return false;
8080
}
8181
} else if (b.tag) {
82-
return /* false */0;
82+
return false;
8383
} else {
8484
return f(a[0], b[0]);
8585
}

lib/whole_compiler.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ end = struct
5555
* You should have received a copy of the GNU Lesser General Public License
5656
* along with this program; if not, write to the Free Software
5757
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
58-
let version = "3.0.1"
58+
let version = "3.1.0"
5959
let header =
60-
"// Generated by BUCKLESCRIPT VERSION 3.0.1, PLEASE EDIT WITH CARE"
60+
"// Generated by BUCKLESCRIPT VERSION 3.1.0, PLEASE EDIT WITH CARE"
6161
let package_name = "bs-platform"
6262

6363
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"postinstall": "node scripts/install.js"
3333
},
3434
"name": "bs-platform",
35-
"version": "3.0.1",
35+
"version": "3.1.0",
3636
"description": "bucklescript compiler, ocaml standard libary by bucklescript and its required runtime support",
3737
"repository": {
3838
"type": "git",

0 commit comments

Comments
 (0)