Skip to content

Change repo url kornilova-l -> scala-native #178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions NEWS.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Scala Native Binding Generator

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

The tool generates Scala Native bindings from C headers.

Expand Down
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ inThisBuild(
organization := "org.scala-native.bindgen",
licenses := Seq(
"BSD 3-Clause" -> url("https://www.scala-lang.org/license/")),
homepage := Some(url("https://kornilova-l.github.io/scala-native-bindgen")),
homepage := Some(
url("https://scala-native.github.io/scala-native-bindgen")),
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
Expand All @@ -28,8 +29,8 @@ inThisBuild(
),
parallelExecution in Global := false,
scmInfo := Some(
ScmInfo(url("https://github.com/kornilova-l/scala-native-bindgen"),
"scm:git:git@github.com:kornilova-l/scala-native-bindgen.git")),
ScmInfo(url("https://github.com/scala-native/scala-native-bindgen"),
"scm:git:git@github.com:scala-native/scala-native-bindgen.git")),
developers := List(
Developer(
id = "kornilova-l",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/paradox/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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.

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

@@@ note

Expand Down
2 changes: 1 addition & 1 deletion docs/src/paradox/contrib/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ sbt -Dproject.version=x.y.z release

Finally, upload the `scala-native-bindgen-linux` and
`scala-native-bindgen-darwin` executables to the release page at:
<https://github.com/kornilova-l/scala-native-bindgen/releases/tag/vx.y.z>
<https://github.com/scala-native/scala-native-bindgen/releases/tag/vx.y.z>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import org.scalanative.bindgen.{Bindgen, BindingOptions}
* By default, the plugin reads the configured header file and generates
* a single Scala source file in the managed source directory.
*
* See the [[https://github.com/kornilova-l/scala-native-bindgen/tree/master/sbt-scala-native-bindgen/src/sbt-test/bindgen/generate example project]].
* See the [[https://github.com/scala-native/scala-native-bindgen/tree/master/sbt-scala-native-bindgen/src/sbt-test/bindgen/generate example project]].
*
* == Configuration ==
*
Expand Down