On Mon, Oct 24, 2016 at 5:57 PM, J Luis <jmfl...@gmail.com> wrote: > Hi, > > I'm trying to tag a new version of a package for the first time (initial tag > was done with 0.4) but > > Pkg.update() > ... > WARNING: julia is fixed at 0.5.0-rc4+0 conflicting with requirement for > GLFW: [0.5.0,∞) > INFO: Upgrading ArgParse: v0.3.1 => v0.4.0 > INFO: Upgrading Compat: v0.9.2 => v0.9.3 > INFO: Upgrading PkgDev: v0.1.2 => v0.1.3 > > julia> PkgDev.tag(:patch) > ERROR: UndefVarError: PkgDev not defined > > julia> PkgDev.tag("GMT",:patch) > ERROR: UndefVarError: PkgDev not defined > > julia> PkgDev.tag("GMT",v"0.0.2") > ERROR: UndefVarError: PkgDev not defined > > What's wrong here?
PkgDev is a normal package and you need to install and import it before using it. >