Latest version not in bower
Closed this issue · 1 comments
fpayer commented
I tried downloading the latest version via bower (version 0.7) but it seems like only version 0.6 is pushed to bower. The bower.json says that version 0.7 is available, can you push it to bower?
fpayer@dev:~/$ bower info jquery-tablesort
bower jquery-tablesort#* cached https://github.com/kylefox/jquery-tablesort.git#0.0.6
bower jquery-tablesort#* validate 0.0.6 against https://github.com/kylefox/jquery-tablesort.git#*
{
name: 'jquery-tablesort',
version: '0.0.6',
homepage: 'https://github.com/kylefox/jquery-tablesort',
authors: [
'Kyle Fox <kylefox@gmail.com>'
],
description: 'A simple, lightweight jQuery plugin for creating sortable tables.',
main: 'jquery.tablesort.js',
moduleType: [],
license: 'MIT',
ignore: [
'**/.*',
'node_modules',
'bower_components',
'test',
'tests'
],
dependencies: {
jquery: '1.8.0 - 2.1.x'
}
}
Available versions:
- 0.0.6
- 0.0.5
kylefox commented
Hey, thanks for bringing this to my attention. I made a type when naming the tag (v.0.0.7
), thus bower couldn't find it. I renamed the tag to v0.0.7
and confirmed it's now available in bower.
Note: you may need to run bower cache clean
first.
~/Code/jquery-tablesort[master]: bower info jquery-tablesort
bower jquery-tablesort#* not-cached https://github.com/kylefox/jquery-tablesort.git#*
bower jquery-tablesort#* resolve https://github.com/kylefox/jquery-tablesort.git#*
bower jquery-tablesort#* checkout v0.0.7
bower jquery-tablesort#* resolved https://github.com/kylefox/jquery-tablesort.git#0.0.7
{
name: 'jquery-tablesort',
version: '0.0.7',
homepage: 'https://github.com/kylefox/jquery-tablesort',
authors: [
'Kyle Fox <kylefox@gmail.com>'
],
description: 'A simple, lightweight jQuery plugin for creating sortable tables.',
main: 'jquery.tablesort.js',
moduleType: [],
license: 'MIT',
ignore: [
'**/.*',
'node_modules',
'bower_components',
'test',
'tests'
],
dependencies: {
jquery: '1.8.0 - 2.1.x'
}
}
Available versions:
- 0.0.7
- 0.0.6
- 0.0.5
You can request info for a specific version with 'bower info jquery-tablesort#<version>'