Skip to content

Commit

Permalink
Start react-next releases
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Sep 24, 2018
1 parent c9e8870 commit 306507b
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 30 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ example-filterproducts/node_modules
*.map
test/report/
test/build/
haxe-react.zip

18 changes: 8 additions & 10 deletions readme.md → README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
# Haxe React [#next](./doc/react-next.md) temporary fork
# Haxe React [#next](./doc/react-next.md) temp fork (See [Roadmap](./doc/react-next-roadmap.md))

[![TravisCI Build Status](https://travis-ci.org/kLabz/haxe-react.svg?branch=next)](https://travis-ci.org/kLabz/haxe-react)

[haxe-react #next vs haxe-react](./doc/react-next.md) -
[Roadmap](./doc/react-next-roadmap.md)

# Haxe React

[![TravisCI Build Status](https://travis-ci.org/massiveinteractive/haxe-react.svg?branch=master)](https://travis-ci.org/massiveinteractive/haxe-react)
[![Haxelib Version](https://img.shields.io/github/tag/massiveinteractive/haxe-react.svg?label=haxelib)](http://lib.haxe.org/p/react)
[![Haxelib Version](https://img.shields.io/github/tag/kLabz/haxe-react.svg?label=haxelib)](http://lib.haxe.org/p/react-next)
[![Join the chat at https://gitter.im/haxe-react](https://img.shields.io/badge/gitter-join%20chat-brightgreen.svg)](https://gitter.im/haxe-react/Lobby)

A Haxe library offering externs and tool functions leveraging Haxe's excellent type system and
compile time macros to offer a strongly typed language to work with the increasingly popular
[React](https://facebook.github.io/react/) library.

haxelib install react
haxelib install react-next

### ⚠️ Warning: README.md outdated

This readme needs many updates. See [changes in #next](./doc/react-next.md); other docs available
in [`doc` folder](./doc/).

### What's included / not included

Expand Down
27 changes: 13 additions & 14 deletions haxelib.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"name": "react",
"license": "MIT",
"tags": [],
"description": "Haxe React is a set of externs and tools to use Facebook React with Haxe",
"contributors": [
"massive","elsassph"
"name": "react-next",
"license": "MIT",
"tags": [],
"description": "Many breaking changes for react, aiming for a future 2.0.0 release",
"contributors": [
"klabz"
],
"releasenote": "See https://github.com/massiveinteractive/haxe-react/blob/master/readme.md",
"version": "1.4.0",
"url": "https://github.com/massiveinteractive/haxe-react",
"classPath": "src/lib",
"dependencies":
{
"tink_hxx": "0.17.0"
}
"releasenote": "See https://github.com/kLabz/haxe-react/blob/next/doc/react-next.md",
"version": "1.100.0",
"url": "https://github.com/kLabz/haxe-react",
"classPath": "src/lib",
"dependencies": {
"tink_hxx": "0.17.0"
}
}
2 changes: 1 addition & 1 deletion mdk/info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "api-react",
"version": "1.4.0"
"version": "1.100.0"
}
5 changes: 3 additions & 2 deletions releaseHaxelib.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
rm -f haxe-react.zip
zip -r haxe-react.zip src haxelib.json readme.md changes.md
haxelib submit haxe-react.zip $1 $2 --always
zip -r haxe-react.zip src haxelib.json README.md changes.md doc
# haxelib submit haxe-react.zip $1 $2 --always
haxelib submit haxe-react.zip
6 changes: 3 additions & 3 deletions tagRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ case "$(uname -s)" in
;;
*)
sed -E -i "$PATTERN" ./haxelib.json
sed -E -i "$PATTERN" ./mdk-info.json
sed -E -i "$PATTERN" ./mdk/info.json
;;
esac

# Tag, commit and push to trigger a new CI release
git commit -am "Release version $VERSION"
git push origin master
# git push origin master
git tag $VERSION
git push origin $VERSION
# git push origin $VERSION

0 comments on commit 306507b

Please sign in to comment.