Skip to content

Instantly share code, notes, and snippets.

@willingc
Forked from minrk/all-releases
Created February 24, 2017 12:55
Show Gist options
  • Save willingc/4d23170639d28f0ed60a75da5fa522f4 to your computer and use it in GitHub Desktop.
Save willingc/4d23170639d28f0ed60a75da5fa522f4 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# usage:
# ruby all-releases ipython jupyter jupyterlab jupyterhub
# dependencies:
# gem install netrc octokit activesupport faraday-http-cache
require "rubygems"
require "octokit"
require "faraday-http-cache"
require "active_support"
# enable caching
stack = Faraday::RackBuilder.new do |builder|
store = ActiveSupport::Cache::FileStore.new "#{Dir.pwd}/cache"
builder.use Faraday::HttpCache, serializer: Marshal, store: store, shared_cache: false
builder.use Octokit::Response::RaiseError
builder.adapter Faraday.default_adapter
end
Octokit.auto_paginate = true
Octokit.middleware = stack
github = Octokit::Client.new(:netrc => true)
# csv header
puts "Date, Org, Repo, Version"
ARGV.each do |org_or_repo|
if org_or_repo.include? '/'
repos = [github.repo(org_or_repo)]
else
repos = github.repos(org_or_repo)
end
repos.each do |repo|
tags = github.tags(repo.full_name)
if not tags.empty?
# human ouptut
# puts "#{repo.full_name}: #{tags.length} releases"
end
tags.empty? or
tags.each do |tag|
v = tag.name
# trim prefixes for old releases
if v.start_with? 'rel-'
v = v.slice(4, v.length)
end
if v.start_with? 'v'
v = v.slice(1, v.length)
end
# exclude prereleases
if v.match(/(b|a|rc|dev)\d*$/)
# prerelease
next
end
# exclude non-version tags (e.g. presentations for tutorials)
if not v.match(/^\d+(\.\d+)*$/)
# not a release
next
end
commit = tag.commit.rels[:self].get.data.commit
date = commit.committer.date
# human output:
# puts " #{v}: #{date.strftime '%Y-%m-%d'}"
# csv output:
puts "#{date.strftime '%Y-%m-%d'}, #{repo.owner.login}, #{repo.name}, #{v}"
end
end
end
Date Org Repo Version
2016-11-30 ipython ipykernel 4.5.2
2016-11-16 ipython ipykernel 4.5.1
2016-09-02 ipython ipykernel 4.5.0
2016-08-09 ipython ipykernel 4.4.1
2016-08-08 ipython ipykernel 4.4.0
2016-02-26 ipython ipykernel 4.3.1
2016-02-25 ipython ipykernel 4.3.0
2016-01-02 ipython ipykernel 4.2.2
2015-12-04 ipython ipykernel 4.2.1
2015-11-26 ipython ipykernel 4.2.0
2015-10-20 ipython ipykernel 4.1.1
2015-10-07 ipython ipykernel 4.1.0
2015-08-12 ipython ipykernel 4.0.3
2015-07-25 ipython ipykernel 4.0.2
2015-07-14 ipython ipykernel 4.0.1
2016-11-14 ipython ipynb 0.5
2016-11-13 ipython ipynb 0.4
2017-02-23 ipython ipyparallel 6.0.2
2017-02-10 ipython ipyparallel 6.0.1
2017-01-11 ipython ipyparallel 6.0.0
2016-08-17 ipython ipyparallel 5.2.0
2016-06-24 ipython ipyparallel 5.1.1
2016-06-09 ipython ipyparallel 5.1.0
2016-02-20 ipython ipyparallel 5.0.1
2016-02-03 ipython ipyparallel 5.0.0
2015-10-27 ipython ipyparallel 4.1.0
2015-08-19 ipython ipyparallel 4.0.2
2015-08-18 ipython ipyparallel 4.0.1
2015-07-20 ipython ipyparallel 4.0.0
2016-03-01 ipython ipython 4.1.2
2016-02-03 ipython ipython 4.1.1
2016-02-03 ipython ipython 4.1.0
2016-01-19 ipython ipython 4.0.3
2016-01-13 ipython ipython 4.0.2
2015-11-25 ipython ipython 4.0.1
2015-08-12 ipython ipython 4.0.0
2015-11-25 ipython ipython 3.2.3
2015-09-22 ipython ipython 3.2.2
2015-07-12 ipython ipython 3.2.1
2015-06-22 ipython ipython 3.2.0
2015-04-03 ipython ipython 3.1.0
2015-02-27 ipython ipython 3.0.0
2015-02-09 ipython ipython 2.4.1
2015-01-30 ipython ipython 2.4.0
2014-11-12 ipython ipython 2.3.1
2014-10-01 ipython ipython 2.3.0
2014-08-06 ipython ipython 2.2.0
2014-05-21 ipython ipython 2.1.0
2014-04-02 ipython ipython 2.0.0
2014-02-24 ipython ipython 1.2.1
2014-02-10 ipython ipython 1.2.0
2013-09-09 ipython ipython 1.1.0
2013-08-09 ipython ipython 1.0.0
2013-04-05 ipython ipython 0.13.2
2012-10-19 ipython ipython 0.13.1
2012-06-30 ipython ipython 0.13
2012-04-22 ipython ipython 0.12.1
2011-12-19 ipython ipython 0.12
2011-07-31 ipython ipython 0.11
2011-04-09 ipython ipython 0.10.2
2010-10-12 ipython ipython 0.10.1
2009-08-05 ipython ipython 0.10
2008-09-15 ipython ipython 0.9.1
2008-09-14 ipython ipython 0.9
2008-05-31 ipython ipython 0.8.4
2017-02-03 ipython ipython 5.2.2
2017-01-31 ipython ipython 5.2.1
2017-01-29 ipython ipython 5.2.0
2016-08-13 ipython ipython 5.1.0
2016-07-08 ipython ipython 5.0.0
2016-07-01 ipython ipython 4.2.1
2016-04-20 ipython ipython 4.2.0
2016-03-01 ipython ipython 4.1.2
2016-02-03 ipython ipython 4.1.1
2016-02-03 ipython ipython 4.1.0
2016-01-19 ipython ipython 4.0.3
2016-01-13 ipython ipython 4.0.2
2015-11-25 ipython ipython 4.0.1
2015-08-12 ipython ipython 4.0.0
2015-11-25 ipython ipython 3.2.3
2015-09-22 ipython ipython 3.2.2
2011-07-31 ipython ipython-py3k 0.11
2015-04-24 ipython ipython_genutils 0.1.0
2016-04-20 ipython ipywidgets 5.0.0
2016-07-14 ipython ipywidgets 5.2.2
2016-07-14 ipython ipywidgets 5.2.1
2016-07-13 ipython ipywidgets 5.2.0
2016-05-25 ipython ipywidgets 5.1.5
2016-05-17 ipython ipywidgets 5.1.4
2016-05-03 ipython ipywidgets 5.1.3
2016-04-28 ipython ipywidgets 5.1.2
2016-04-28 ipython ipywidgets 5.1.1
2016-04-27 ipython ipywidgets 5.1.0
2016-04-20 ipython ipywidgets 5.0.0
2015-10-26 ipython ipywidgets 4.1.1
2015-10-20 ipython ipywidgets 4.1.0
2015-09-21 ipython ipywidgets 4.0.3
2015-08-03 ipython ipywidgets 4.0.2
2015-08-03 ipython ipywidgets 4.0.1
2015-08-03 ipython ipywidgets 4.0.0
2017-02-23 ipython traitlets 4.3.2
2016-09-28 ipython traitlets 4.3.1
2016-09-09 ipython traitlets 4.3.0
2016-07-01 ipython traitlets 4.2.2
2016-03-14 ipython traitlets 4.2.1
2016-03-14 ipython traitlets 4.2.0
2016-01-15 ipython traitlets 4.1.0
2015-06-19 ipython traitlets 4.0.0
2016-01-15 jupyter atom-notebook 0.0.9
2016-01-08 jupyter atom-notebook 0.0.8
2016-01-05 jupyter atom-notebook 0.0.7
2015-12-08 jupyter atom-notebook 0.0.6
2015-12-08 jupyter atom-notebook 0.0.5
2015-12-06 jupyter atom-notebook 0.0.4
2015-12-02 jupyter atom-notebook 0.0.3
2015-11-30 jupyter atom-notebook 0.0.2
2016-08-19 jupyter dashboards 0.6.1
2016-06-17 jupyter dashboards 0.6.0
2016-05-12 jupyter dashboards 0.5.2
2016-05-12 jupyter dashboards 0.5.1
2016-04-26 jupyter dashboards 0.5.0
2016-02-19 jupyter dashboards 0.4.2
2016-02-07 jupyter dashboards 0.4.1
2016-01-21 jupyter dashboards 0.4.0
2015-12-30 jupyter dashboards 0.3.0
2015-12-16 jupyter dashboards 0.2.2
2015-12-16 jupyter dashboards 0.2.1
2015-12-01 jupyter dashboards 0.2.0
2015-12-02 jupyter dashboards 0.1.1
2015-11-17 jupyter dashboards 0.1.0
2016-09-22 jupyter declarativewidgets 0.7.0
2016-07-27 jupyter declarativewidgets 0.6.2
2016-07-01 jupyter declarativewidgets 0.6.1
2016-06-17 jupyter declarativewidgets 0.6.0
2016-07-01 jupyter declarativewidgets 0.5.4
2016-06-08 jupyter declarativewidgets 0.5.3
2016-05-03 jupyter declarativewidgets 0.5.2
2016-04-29 jupyter declarativewidgets 0.5.1
2016-04-27 jupyter declarativewidgets 0.5.0
2016-04-06 jupyter declarativewidgets 0.4.5
2016-04-01 jupyter declarativewidgets 0.4.4
2016-03-24 jupyter declarativewidgets 0.4.3
2016-03-03 jupyter declarativewidgets 0.4.2
2016-02-23 jupyter declarativewidgets 0.4.1
2016-02-12 jupyter declarativewidgets 0.4.0
2016-03-22 jupyter declarativewidgets 0.3.2
2016-02-08 jupyter declarativewidgets 0.3.1
2016-01-21 jupyter declarativewidgets 0.3.0
2016-01-18 jupyter declarativewidgets 0.2.2
2015-12-15 jupyter declarativewidgets 0.2.1
2015-12-01 jupyter declarativewidgets 0.2.0
2016-03-22 jupyter declarativewidgets 0.1.4
2016-02-16 jupyter declarativewidgets 0.1.3
2016-01-18 jupyter declarativewidgets 0.1.2
2015-12-01 jupyter declarativewidgets 0.1.1
2015-11-17 jupyter declarativewidgets 0.1.0
2017-01-18 jupyter echo_kernel 1.1
2017-01-18 jupyter echo_kernel 1.0
2015-03-03 jupyter jupyter-drive 1.0.0
2017-02-20 jupyter jupyter_client 5.0.0
2016-08-31 jupyter jupyter_client 4.4.0
2016-06-07 jupyter jupyter_client 4.3.0
2016-03-10 jupyter jupyter_client 4.2.2
2016-03-06 jupyter jupyter_client 4.2.1
2016-03-04 jupyter jupyter_client 4.2.0
2015-10-08 jupyter jupyter_client 4.1.1
2015-10-08 jupyter jupyter_client 4.1.0
2015-07-12 jupyter jupyter_client 4.0.0
2017-02-03 jupyter jupyter_console 5.1.0
2016-07-05 jupyter jupyter_console 5.0.0
2016-02-24 jupyter jupyter_console 4.1.1
2016-01-13 jupyter jupyter_console 4.1.0
2015-10-07 jupyter jupyter_console 4.0.3
2015-09-01 jupyter jupyter_console 4.0.2
2015-08-30 jupyter jupyter_console 4.0.1
2015-07-15 jupyter jupyter_console 4.0.0
2017-02-10 jupyter jupyter_core 4.3.0
2016-12-01 jupyter jupyter_core 4.2.1
2016-09-13 jupyter jupyter_core 4.2.0
2016-08-10 jupyter jupyter_core 4.1.1
2016-03-08 jupyter jupyter_core 4.1.0
2015-09-18 jupyter jupyter_core 4.0.6
2015-09-17 jupyter jupyter_core 4.0.5
2015-08-17 jupyter jupyter_core 4.0.4
2015-08-14 jupyter jupyter_core 4.0.3
2015-07-20 jupyter jupyter_core 4.0.2
2015-07-02 jupyter jupyter_core 4.0.1
2015-07-02 jupyter jupyter_core 4.0
2016-06-13 jupyter jupyter_kernel_test 0.2.2
2016-06-13 jupyter jupyter_kernel_test 0.2
2017-02-14 jupyter kernel_gateway 1.2.0
2016-12-17 jupyter kernel_gateway 1.1.2
2016-09-11 jupyter kernel_gateway 1.1.1
2016-09-09 jupyter kernel_gateway 1.1.0
2016-07-15 jupyter kernel_gateway 1.0.0
2016-06-17 jupyter kernel_gateway 0.6.0
2016-04-20 jupyter kernel_gateway 0.5.1
2016-04-04 jupyter kernel_gateway 0.5.0
2016-04-20 jupyter kernel_gateway 0.4.1
2016-02-18 jupyter kernel_gateway 0.4.0
2016-01-25 jupyter kernel_gateway 0.3.1
2016-01-17 jupyter kernel_gateway 0.3.0
2015-12-15 jupyter kernel_gateway 0.2.0
2015-11-18 jupyter kernel_gateway 0.1.0
2017-01-21 jupyter nbconvert 5.1.1
2017-01-21 jupyter nbconvert 5.1
2016-12-15 jupyter nbconvert 5.0.0
2016-12-14 jupyter nbconvert 4.3.0
2016-04-08 jupyter nbconvert 4.2.0
2015-10-30 jupyter nbconvert 4.1.0
2015-07-12 jupyter nbconvert 4.0.0
2017-02-23 jupyter nbdime 0.2.0
2017-01-19 jupyter nbdime 0.1.2
2017-01-09 jupyter nbdime 0.1.1
2016-12-16 jupyter nbdime 0.1.0
2017-02-21 jupyter nbformat 4.3.0
2016-12-01 jupyter nbformat 4.2.0
2016-08-09 jupyter nbformat 4.1.0
2015-10-05 jupyter nbformat 4.0.1
2015-07-02 jupyter nbformat 4.0.0
2017-02-06 jupyter nbgrader 0.4.0
2017-01-13 jupyter nbgrader 0.3.3
2017-01-11 jupyter nbgrader 0.3.2
2016-09-22 jupyter nbgrader 0.3.1
2016-06-25 jupyter nbgrader 0.3.0
2015-09-03 jupyter nbgrader 0.2.2
2015-08-23 jupyter nbgrader 0.2.1
2015-08-19 jupyter nbgrader 0.2.0
2015-07-16 jupyter nbgrader 0.1.0
2015-07-16 jupyter nbgrader 0.1.0
2017-02-09 jupyter notebook 4.4.1
2017-02-09 jupyter notebook 4.4.0
2017-01-31 jupyter notebook 4.3.2
2016-12-21 jupyter notebook 4.3.1
2016-12-08 jupyter notebook 4.3.0
2016-09-16 jupyter notebook 4.2.3
2016-08-03 jupyter notebook 4.2.2
2016-06-03 jupyter notebook 4.2.1
2016-04-15 jupyter notebook 4.2.0
2016-01-08 jupyter notebook 4.1.0
2015-10-09 jupyter notebook 4.0.6
2015-09-22 jupyter notebook 4.0.5
2015-08-21 jupyter notebook 4.0.4
2015-08-20 jupyter notebook 4.0.3
2015-08-14 jupyter notebook 4.0.2
2015-07-30 jupyter notebook 4.0.1
2015-07-30 jupyter notebook 4.0.0
2016-03-30 jupyter qtconsole 4.2.1
2016-02-23 jupyter qtconsole 4.2.0
2015-11-25 jupyter qtconsole 4.1.1
2015-10-16 jupyter qtconsole 4.1.0
2015-08-17 jupyter qtconsole 4.0.1
2015-07-20 jupyter qtconsole 4.0.0
2017-02-14 jupyter sphinxcontrib_github_alt 1.0
2015-09-15 jupyter sphinx_rtd_theme 0.1.9
2015-05-04 jupyter sphinx_rtd_theme 0.1.8
2016-02-04 jupyter testpath 0.3
2015-03-31 jupyter testpath 0.2
2015-02-02 jupyter testpath 0.1
2015-09-17 jupyter tmpnb 0.1.0
2017-02-21 jupyterlab extension-builder 0.11.0
2017-02-08 jupyterlab extension-builder 0.10.1
2016-12-02 jupyterlab extension-builder 0.10.0
2016-11-30 jupyterlab extension-builder 0.9.0
2016-10-30 jupyterlab extension-builder 0.8.1
2016-10-28 jupyterlab extension-builder 0.8.0
2016-10-21 jupyterlab extension-builder 0.7.1
2016-10-13 jupyterlab extension-builder 0.7.0
2016-09-21 jupyterlab extension-builder 0.6.2
2016-09-21 jupyterlab extension-builder 0.6.1
2016-09-21 jupyterlab extension-builder 0.6.0
2016-09-21 jupyterlab extension-builder 0.5.0
2016-09-16 jupyterlab extension-builder 0.4.1
2016-09-15 jupyterlab extension-builder 0.4.0
2016-09-10 jupyterlab extension-builder 0.3.0
2016-09-09 jupyterlab extension-builder 0.2.0
2016-09-09 jupyterlab extension-builder 0.1.1
2016-09-09 jupyterlab extension-builder 0.1.0
2017-02-14 jupyterlab jupyterlab 0.16.2
2017-02-14 jupyterlab jupyterlab 0.16.1
2017-02-09 jupyterlab jupyterlab 0.16.0
2017-02-02 jupyterlab jupyterlab 0.15.1
2017-01-31 jupyterlab jupyterlab 0.15.0
2017-01-25 jupyterlab jupyterlab 0.14.0
2017-01-25 jupyterlab jupyterlab 0.13.2
2017-01-18 jupyterlab jupyterlab 0.13.1
2017-01-18 jupyterlab jupyterlab 0.13.0
2016-12-22 jupyterlab jupyterlab 0.12.1
2016-12-22 jupyterlab jupyterlab 0.12.0
2016-12-14 jupyterlab jupyterlab 0.11.3
2016-12-02 jupyterlab jupyterlab 0.11.2
2016-12-01 jupyterlab jupyterlab 0.11.1
2016-12-01 jupyterlab jupyterlab 0.11.0
2016-11-21 jupyterlab jupyterlab 0.10.0
2016-11-18 jupyterlab jupyterlab 0.9.1
2016-11-18 jupyterlab jupyterlab 0.9.0
2016-11-03 jupyterlab jupyterlab 0.8.0
2016-10-27 jupyterlab jupyterlab 0.7.0
2016-10-26 jupyterlab jupyterlab 0.6.0
2016-10-14 jupyterlab jupyterlab 0.5.1
2016-10-07 jupyterlab jupyterlab 0.5.0
2016-09-29 jupyterlab jupyterlab 0.4.1
2016-09-29 jupyterlab jupyterlab 0.4.0
2016-09-12 jupyterlab jupyterlab 0.3.0
2016-08-15 jupyterlab jupyterlab 0.2.0
2016-07-27 jupyterlab jupyterlab 0.1.2
2016-07-15 jupyterlab jupyterlab 0.1.1
2016-07-15 jupyterlab jupyterlab 0.1.0
2016-07-15 jupyterlab jupyterlab 0.0.13
2016-07-13 jupyterlab jupyterlab 0.0.12
2016-07-12 jupyterlab jupyterlab 0.0.11
2016-06-23 jupyterlab jupyterlab 0.0.10
2016-06-15 jupyterlab jupyterlab 0.0.9
2016-06-15 jupyterlab jupyterlab 0.0.8
2016-06-08 jupyterlab jupyterlab 0.0.7
2016-06-08 jupyterlab jupyterlab 0.0.6
2016-06-06 jupyterlab jupyterlab 0.0.5
2016-06-06 jupyterlab jupyterlab 0.0.4
2016-06-04 jupyterlab jupyterlab 0.0.3
2016-06-04 jupyterlab jupyterlab 0.0.2
2017-01-24 jupyterlab jupyterlab_geojson 0.4.0
2017-02-01 jupyterlab jupyterlab_geojson 0.15.0
2017-02-11 jupyterlab jupyterlab_json 0.16.0
2017-02-01 jupyterlab jupyterlab_json 0.15.0
2017-02-22 jupyterlab services 0.39.1
2017-02-21 jupyterlab services 0.39.0
2017-02-08 jupyterlab services 0.38.0
2017-02-08 jupyterlab services 0.37.0
2017-01-30 jupyterlab services 0.36.1
2017-01-18 jupyterlab services 0.36.0
2017-01-11 jupyterlab services 0.35.1
2017-01-09 jupyterlab services 0.35.0
2016-12-22 jupyterlab services 0.34.3
2016-11-21 jupyterlab services 0.34.2
2016-11-21 jupyterlab services 0.34.1
2016-11-21 jupyterlab services 0.34.0
2016-11-18 jupyterlab services 0.33.1
2016-11-18 jupyterlab services 0.33.0
2016-11-15 jupyterlab services 0.32.0
2016-11-14 jupyterlab services 0.31.0
2016-11-04 jupyterlab services 0.30.2
2016-11-04 jupyterlab services 0.30.1
2016-11-04 jupyterlab services 0.30.0
2016-11-02 jupyterlab services 0.29.0
2016-11-02 jupyterlab services 0.28.0
2016-11-01 jupyterlab services 0.27.0
2016-10-28 jupyterlab services 0.26.0
2016-10-26 jupyterlab services 0.25.0
2016-10-19 jupyterlab services 0.24.0
2016-10-19 jupyterlab services 0.23.0
2016-10-14 jupyterlab services 0.22.0
2016-10-07 jupyterlab services 0.21.0
2016-10-05 jupyterlab services 0.20.0
2016-09-13 jupyterlab services 0.19.0
2016-08-31 jupyterlab services 0.18.1
2016-08-08 jupyterlab services 0.18.0
2016-07-29 jupyterlab services 0.17.0
2016-07-22 jupyterlab services 0.16.3
2016-07-22 jupyterlab services 0.16.2
2016-07-22 jupyterlab services 0.16.1
2016-07-21 jupyterlab services 0.16.0
2016-07-16 jupyterlab services 0.15.2
2016-07-13 jupyterlab services 0.15.1
2016-07-11 jupyterlab services 0.15.0
2016-07-10 jupyterlab services 0.14.1
2016-07-08 jupyterlab services 0.14.0
2016-07-08 jupyterlab services 0.13.0
2016-07-07 jupyterlab services 0.12.5
2016-07-07 jupyterlab services 0.12.4
2016-07-07 jupyterlab services 0.12.3
2016-07-07 jupyterlab services 0.12.2
2016-07-07 jupyterlab services 0.12.1
2016-07-07 jupyterlab services 0.12.0
2016-06-30 jupyterlab services 0.11.4
2016-06-29 jupyterlab services 0.11.3
2016-06-27 jupyterlab services 0.11.2
2016-06-27 jupyterlab services 0.11.1
2016-06-27 jupyterlab services 0.11.0
2016-06-22 jupyterlab services 0.10.5
2016-06-01 jupyterlab services 0.10.4
2016-06-01 jupyterlab services 0.10.3
2016-05-19 jupyterlab services 0.10.2
2016-05-12 jupyterlab services 0.10.1
2016-05-10 jupyterlab services 0.10.0
2016-04-28 jupyterlab services 0.9.2
2016-04-27 jupyterlab services 0.9.1
2016-04-21 jupyterlab services 0.9.0
2016-04-21 jupyterlab services 0.8.1
2016-04-12 jupyterlab services 0.8.0
2016-04-04 jupyterlab services 0.7.1
2016-04-04 jupyterlab services 0.7.0
2016-03-22 jupyterlab services 0.6.6
2016-03-18 jupyterlab services 0.6.5
2016-03-14 jupyterlab services 0.6.4
2016-03-12 jupyterlab services 0.6.3
2016-03-12 jupyterlab services 0.6.2
2016-03-11 jupyterlab services 0.6.1
2016-03-11 jupyterlab services 0.6.0
2016-03-10 jupyterlab services 0.5.5
2016-02-21 jupyterlab services 0.5.4
2016-02-19 jupyterlab services 0.5.3
2016-02-18 jupyterlab services 0.5.2
2016-10-12 jupyterhub configurable-http-proxy 1.3.1
2016-08-01 jupyterhub configurable-http-proxy 1.3.0
2016-04-19 jupyterhub configurable-http-proxy 1.2.0
2016-01-04 jupyterhub configurable-http-proxy 1.1.0
2016-01-04 jupyterhub configurable-http-proxy 1.0.0
2015-10-05 jupyterhub configurable-http-proxy 0.5.0
2015-06-04 jupyterhub configurable-http-proxy 0.4.0
2015-04-29 jupyterhub configurable-http-proxy 0.3.0
2014-11-22 jupyterhub configurable-http-proxy 0.2.1
2014-11-15 jupyterhub configurable-http-proxy 0.2.0
2014-10-01 jupyterhub configurable-http-proxy 0.1.1
2014-10-01 jupyterhub configurable-http-proxy 0.1.0
2014-09-20 jupyterhub configurable-http-proxy 0.0.3
2014-08-25 jupyterhub configurable-http-proxy 0.0.0
2017-01-03 jupyterhub dockerspawner 0.6.0
2016-10-05 jupyterhub dockerspawner 0.5.0
2016-06-07 jupyterhub dockerspawner 0.4.0
2016-04-22 jupyterhub dockerspawner 0.3.0
2016-02-16 jupyterhub dockerspawner 0.2.0
2016-02-03 jupyterhub dockerspawner 0.1.0
2017-01-10 jupyterhub jupyterhub 0.7.2
2017-01-02 jupyterhub jupyterhub 0.7.1
2016-12-02 jupyterhub jupyterhub 0.7.0
2016-05-04 jupyterhub jupyterhub 0.6.1
2016-04-25 jupyterhub jupyterhub 0.6.0
2016-03-08 jupyterhub jupyterhub 0.5.0
2016-02-03 jupyterhub jupyterhub 0.4.1
2016-02-01 jupyterhub jupyterhub 0.4.0
2015-11-04 jupyterhub jupyterhub 0.3.0
2015-07-12 jupyterhub jupyterhub 0.2.0
2015-03-08 jupyterhub jupyterhub 0.1.0
2017-01-31 jupyterhub jupyterhub-carina 0.2.1
2017-01-30 jupyterhub jupyterhub-carina 0.2.0
2016-05-27 jupyterhub jupyterhub-carina 0.1.1
2016-04-26 jupyterhub jupyterhub-carina 0.1.0
2016-03-28 jupyterhub ldapauthenticator 1.0
2016-11-21 jupyterhub ldapauthenticator 1.1
2016-10-05 jupyterhub oauthenticator 0.5.1
2016-09-02 jupyterhub oauthenticator 0.5.0
2016-05-18 jupyterhub oauthenticator 0.4.1
2016-05-11 jupyterhub oauthenticator 0.4.0
2016-04-20 jupyterhub oauthenticator 0.3.0
2016-01-04 jupyterhub oauthenticator 0.2.0
2015-12-22 jupyterhub oauthenticator 0.1.0
2016-10-10 jupyterhub sudospawner 0.3.0
2016-02-12 jupyterhub sudospawner 0.2.0
2016-02-03 jupyterhub sudospawner 0.1.0
2016-11-03 jupyterhub systemdspawner 0.9.9
2016-10-12 jupyterhub systemdspawner 0.9.6
2016-10-12 jupyterhub systemdspawner 0.9.5
2016-10-24 jupyterhub systemdspawner 0.9.7
2017-02-23 jupyter-widgets jupyter-sphinx 0.0.3
2016-12-09 jupyter-widgets jupyter-sphinx 0.0.2
2016-12-06 jupyter-widgets jupyter-sphinx 0.0.1
2016-09-08 jupyter-widgets traittypes 0.0.6
2016-08-28 jupyter-widgets traittypes 0.0.5
2016-08-25 jupyter-widgets traittypes 0.0.4
2016-08-25 jupyter-widgets traittypes 0.0.3
2016-08-24 jupyter-widgets traittypes 0.0.2
2016-08-23 jupyter-widgets traittypes 0.0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment