Skip to content

Commit 4b611a0

Browse files
author
Travis
committed
Release version 1.0.0 [ci skip]
2 parents 309835d + e35ee0d commit 4b611a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+132
-133
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ after_success:
2323
deploy:
2424
provider: releases
2525
api-key: $GITHUB_TOKEN
26-
file: "target/flow-react-`cat version.txt`.jar"
26+
file: "target/react-`cat version.txt`.jar"
2727
skip_cleanup: true
2828
on:
2929
branch: master

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec
5555
<dependency>
5656
<groupId>com.flowpowered</groupId>
5757
<artifactId>react</artifactId>
58-
<version>1.0.0-SNAPSHOT</version>
58+
<version>1.0.0</version>
5959
</dependency>
6060

6161
If you're using [Gradle](https://www.gradle.org/) to manage project dependencies, simply include the following in your `build.gradle` file:
@@ -64,7 +64,7 @@ If you're using [Gradle](https://www.gradle.org/) to manage project dependencies
6464
mavenCentral()
6565
}
6666
dependencies {
67-
compile 'com.flowpowered:react:1.0.0-SNAPSHOT'
67+
compile 'com.flowpowered:react:1.0.0'
6868
}
6969

7070
If you plan on using snapshots and do not already have the snapshot repo in your repository list, you will need to add this as well:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'signing'
1313
ext.projectName = 'React'
1414
group = 'com.flowpowered'
1515
archivesBaseName = 'react'
16-
version = '1.0.0-SNAPSHOT'
16+
version = '1.0.0'
1717
ext.packaging = 'jar'
1818
ext.inceptionYear = '2013'
1919
ext.url = 'https://flowpowered.com/react'

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43

54
<!-- Project information -->
65
<name>React</name>
76
<groupId>com.flowpowered</groupId>
87
<artifactId>react</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
109
<packaging>jar</packaging>
1110
<inceptionYear>2013</inceptionYear>
1211
<url>https://flowpowered.com/react</url>

src/main/java/com/flowpowered/react/ReactDefaults.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

src/main/java/com/flowpowered/react/Utilities.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

src/main/java/com/flowpowered/react/body/Body.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

src/main/java/com/flowpowered/react/body/CollisionBody.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

src/main/java/com/flowpowered/react/body/RigidBody.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

src/main/java/com/flowpowered/react/collision/BroadPhasePair.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file is part of Flow React, licensed under the MIT License (MIT).
2+
* This file is part of React, licensed under the MIT License (MIT).
33
*
44
* Copyright (c) 2013 Flow Powered <https://flowpowered.com/>
55
* Original ReactPhysics3D C++ library by Daniel Chappuis <http://danielchappuis.ch>
6-
* Flow React is re-licensed with permission from ReactPhysics3D author.
6+
* React is re-licensed with permission from ReactPhysics3D author.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy
99
* of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)