Skip to content

Commit fe0df0a

Browse files
authored
Merge pull request #178 from scala-native/change-repo-url
Change repo url kornilova-l -> scala-native
2 parents 80dd428 + 7fe5e95 commit fe0df0a

File tree

6 files changed

+8
-51
lines changed

6 files changed

+8
-51
lines changed

NEWS.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scala Native Binding Generator
22

3-
[![Build Status](https://travis-ci.com/kornilova-l/scala-native-bindgen.svg?branch=master)](https://travis-ci.com/kornilova-l/scala-native-bindgen)
3+
[![Build Status](https://travis-ci.com/scala-native/scala-native-bindgen.svg?branch=master)](https://travis-ci.com/kornilova-l/scala-native-bindgen)
44

55
The tool generates Scala Native bindings from C headers.
66

build.sbt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ inThisBuild(
1818
organization := "org.scala-native.bindgen",
1919
licenses := Seq(
2020
"BSD 3-Clause" -> url("https://www.scala-lang.org/license/")),
21-
homepage := Some(url("https://kornilova-l.github.io/scala-native-bindgen")),
21+
homepage := Some(
22+
url("https://scala-native.github.io/scala-native-bindgen")),
2223
scalacOptions ++= Seq(
2324
"-deprecation",
2425
"-unchecked",
@@ -28,8 +29,8 @@ inThisBuild(
2829
),
2930
parallelExecution in Global := false,
3031
scmInfo := Some(
31-
ScmInfo(url("https://github.com/kornilova-l/scala-native-bindgen"),
32-
"scm:git:git@github.com:kornilova-l/scala-native-bindgen.git")),
32+
ScmInfo(url("https://github.com/scala-native/scala-native-bindgen"),
33+
"scm:git:git@github.com:scala-native/scala-native-bindgen.git")),
3334
developers := List(
3435
Developer(
3536
id = "kornilova-l",

docs/src/paradox/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Statically linked executables are provided with each release for Linux and macOS. Head over to the [releases page] to download the latest version for your platform.
44

5-
[releases page]: https://github.com/kornilova-l/scala-native-bindgen/releases
5+
[releases page]: https://github.com/scala-native/scala-native-bindgen/releases
66

77
@@@ note
88

docs/src/paradox/contrib/releasing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ sbt -Dproject.version=x.y.z release
1818

1919
Finally, upload the `scala-native-bindgen-linux` and
2020
`scala-native-bindgen-darwin` executables to the release page at:
21-
<https://github.com/kornilova-l/scala-native-bindgen/releases/tag/vx.y.z>
21+
<https://github.com/scala-native/scala-native-bindgen/releases/tag/vx.y.z>

sbt-scala-native-bindgen/src/main/scala/org/scalanative/bindgen/sbt/ScalaNativeBindgenPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import org.scalanative.bindgen.{Bindgen, BindingOptions}
2222
* By default, the plugin reads the configured header file and generates
2323
* a single Scala source file in the managed source directory.
2424
*
25-
* See the [[https://github.com/kornilova-l/scala-native-bindgen/tree/master/sbt-scala-native-bindgen/src/sbt-test/bindgen/generate example project]].
25+
* See the [[https://github.com/scala-native/scala-native-bindgen/tree/master/sbt-scala-native-bindgen/src/sbt-test/bindgen/generate example project]].
2626
*
2727
* == Configuration ==
2828
*

0 commit comments

Comments
 (0)