Skip to content

Commit

Permalink
[#141] Updated URL for repo from github/sjl to github/clj-commons
Browse files Browse the repository at this point in the history
  • Loading branch information
ieugen committed Nov 24, 2023
1 parent c5fb262 commit 532fc43
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 16 deletions.
5 changes: 3 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@

## Changes Between 2.10.0 and 3.0.0 (unreleased)
## Changes Between 2.10.0 and 2.11.0 (unreleased)

### Migration to clj-commons

Project was migrated to clj-commons org and new source is [clj-commons/metrics-clojure](https://github.com/clj-commons/metrics-clojure/)
Added ORIGINATOR and CODEOWNERS files.
- Added ORIGINATOR and CODEOWNERS files.
- Renamed links to use new github url

### Dockerfile for documentation build

Expand Down
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ Usage
Change Log
-----------

[Right here](https://github.com/sjl/metrics-clojure/blob/master/ChangeLog.md)
[Right here](https://github.com/clj-commons/metrics-clojure/blob/master/ChangeLog.md)


More Information
----------------

* Documentation: <http://metrics-clojure.rtfd.org/>
* Source (Git): <http://github.com/sjl/metrics-clojure/>
* Issues: <http://github.com/sjl/metrics-clojure/issues/>
* Source (Git): <http://github.com/clj-commons/metrics-clojure/>
* Issues: <http://github.com/clj-commons/metrics-clojure/issues/>
* License: MIT/X11
2 changes: 1 addition & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ To instantiate a registry, use `metrics.core/new-registry`::
(mtr/new-registry)


See `GH #19 <https://github.com/sjl/metrics-clojure/issues/19>`_ for
See `GH #19 <https://github.com/clj-commons/metrics-clojure/issues/19>`_ for
discussion.

defgauge Restricted to Functions Only
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ documentation <http://metrics.dropwizard.io/>`_ and/or watch the `talk
<https://vimeo.com/51320606>`_.

* Source (Mercurial): http://bitbucket.org/sjl/metrics-clojure/
* Source (Git): http://github.com/sjl/metrics-clojure/
* Source (Git): http://github.com/clj-commons/metrics-clojure/
* Documentation: http://metrics-clojure.rtfd.org/
* Issues: http://github.com/sjl/metrics-clojure/issues/
* Issues: http://github.com/clj-commons/metrics-clojure/issues/
* License: MIT/X11

Table of Contents
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-core/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure "3.0.0-SNAPSHOT"
:description "A Clojure façade for Coda Hale's metrics library."
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[io.dropwizard.metrics/metrics-core "4.0.5"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-ganglia/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-ganglia "3.0.0-SNAPSHOT"
:description "Ganglia reporter integration for metrics-clojure"
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-graphite/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-graphite "3.0.0-SNAPSHOT"
:description "Graphite reporter integration for metrics-clojure"
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-health/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-health "3.0.0-SNAPSHOT"
:description "Gluing together metrics-clojure and healthchecks."
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-influxdb/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-influxdb "3.0.0-SNAPSHOT"
:description "InfluxDB reporter integration for metrics-clojure"
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-jvm/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-jvm "3.0.0-SNAPSHOT"
:description "Gluing together metrics-clojure and jvm instrumentation."
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-riemann/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-riemann "3.0.0-SNAPSHOT"
:description "Riemann reporter integration for metrics-clojure"
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:profiles {:dev {:global-vars {*warn-on-reflection* true}}}
:dependencies [[metrics-clojure "3.0.0-SNAPSHOT"]
Expand Down
2 changes: 1 addition & 1 deletion metrics-clojure-ring/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject metrics-clojure-ring "3.0.0-SNAPSHOT"
:description "Various things gluing together metrics-clojure and ring."
:url "https://github.com/sjl/metrics-clojure"
:url "https://github.com/clj-commons/metrics-clojure"
:license {:name "MIT"}
:dependencies [[cheshire "5.10.0"]
[metrics-clojure "3.0.0-SNAPSHOT"]]
Expand Down

0 comments on commit 532fc43

Please sign in to comment.