1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Juliaのパッケージのversion tagを上げる方法

1
Posted at

Juliaのパッケージ管理は、METADATA.jlで行われている。(Document)

今回、SVM.jlにtestを追加した後、version tagを上げたほうが良いと言われたので、やってみた。

これが最適な方法かはわからないが、とりあえずこうしたという備忘録です。

まず、最新のmasterにリリースするべき機能がマージされているとします。

cd ~/.julia/v0.3/SVM
git checkout master
git pull --rebase origin master

juliaを起動後

Pkg.tag("SVM")

これで、METADATA.jlにtagが作られているはずです

cd ~/.julia/v0.3/METADATA/SVM
git show

で、この変更をコミットして、自分のforkしたMETADATA.jlのリポジトリにpushし、Pull requestを送ります

お作法がマニュアル見ても書いてないのでちょっと戸惑いましたが、意外となんとかなるものですね。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?