Skip to content

Commit

Permalink
Release 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
steffan-westcott committed Jan 15, 2024
1 parent a947771 commit 4616621
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING: Until version `1.0.0` there is a greater possibility of breaking change

== `0.x` changes

=== `0.2.6` (in progress)
=== `0.2.6` (2024-01-15)

- Bump deps
* [MAINT] OpenTelemetry `1.34.1`
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Find more in-depth information on `clj-otel` in the xref:_documentation[document
[source,clojure]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.5"}}}
:deps {com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.6"}}}
----
** To add traces telemetry, use Clojure functions such as https://cljdoc.org/d/com.github.steffan-westcott/clj-otel-api/CURRENT/api/steffan-westcott.clj-otel.api.trace.span#with-span![`steffan-westcott.clj-otel.api.trace.span/with-span!`] to create spans with attributes
+
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ clojure -A:deps -T:build help/doc"
(:import (java.nio.file FileSystems)))

(def ^:private version
"0.2.6-SNAPSHOT")
"0.2.6")

;; Later artifacts in this vector may depend on earlier artifacts
(def ^:private library-project-paths
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;!zprint {:width 140}

{:defaults {:instrumentation-library {:name "steffan-westcott.clj-otel"
:version "0.2.6-SNAPSHOT"}}}
:version "0.2.6"}}}
14 changes: 7 additions & 7 deletions doc/guides.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To add telemetry to a library or application, use xref:concepts.adoc#_automatic_
[source,clojure]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.5"}}}
:deps {com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.6"}}}
----

* Follow the guides below to add manual traces and metrics instrumentation.
Expand Down Expand Up @@ -289,7 +289,7 @@ CAUTION: When running an application with the OpenTelemetry instrumentation agen
[source,clojure]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java8 {:mvn/version "0.2.5"}}}
:deps {com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java8 {:mvn/version "0.2.6"}}}
----
* Use https://cljdoc.org/d/com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java8/CURRENT/api/steffan-westcott.clj-otel.instrumentation.runtime-telemetry-java8#register![`steffan-westcott.clj-otel.instrumentation.runtime-telemetry-java8/register!`] to add JVM runtime telemetry.
The metrics are recorded by instruments which take measurements asynchronously.
Expand All @@ -307,7 +307,7 @@ The metrics are recorded by instruments which take measurements asynchronously.
[source,clojure]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java17 {:mvn/version "0.2.5"}}}
:deps {com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java17 {:mvn/version "0.2.6"}}}
----
* Use https://cljdoc.org/d/com.github.steffan-westcott/clj-otel-instrumentation-runtime-telemetry-java17/CURRENT/api/steffan-westcott.clj-otel.instrumentation.runtime-telemetry-java17#register![`steffan-westcott.clj-otel.instrumentation.runtime-telemetry-java17/register!`] to add JVM runtime telemetry.
The metrics are recorded by instruments which take measurements asynchronously.
Expand Down Expand Up @@ -702,7 +702,7 @@ For an example application `my-app` that exports traces only using OTLP over gRP
[.small]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-sdk-extension-autoconfigure {:mvn/version "0.2.5"}}
:deps {com.github.steffan-westcott/clj-otel-sdk-extension-autoconfigure {:mvn/version "0.2.6"}}
:aliases {
:otel {:jvm-opts ["-Dotel.resource.attributes=service.name=my-app"
"-Dotel.traces.exporter=otlp"
Expand Down Expand Up @@ -751,9 +751,9 @@ For an example application `my-app` that exports traces only using OTLP over gRP
[.small]
----
{;; ...
:deps {com.github.steffan-westcott/clj-otel-exporter-otlp {:mvn/version "0.2.5"}
com.github.steffan-westcott/clj-otel-sdk-extension-resources {:mvn/version "0.2.5"}
com.github.steffan-westcott/clj-otel-sdk {:mvn/version "0.2.5"}
:deps {com.github.steffan-westcott/clj-otel-exporter-otlp {:mvn/version "0.2.6"}
com.github.steffan-westcott/clj-otel-sdk-extension-resources {:mvn/version "0.2.6"}
com.github.steffan-westcott/clj-otel-sdk {:mvn/version "0.2.6"}
io.grpc/grpc-netty-shaded {:mvn/version "1.61.0"}
io.grpc/grpc-protobuf {:mvn/version "1.61.0"}
io.grpc/grpc-stub {:mvn/version "1.61.0"}}}
Expand Down
2 changes: 1 addition & 1 deletion doc/tutorial.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ You will now enrich the telemetry detail by adding manual instrumentation in add
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
ring/ring-jetty-adapter {:mvn/version "1.11.0"}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.5"}}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.6"}}
:aliases {:otel {:jvm-opts ["-javaagent:opentelemetry-javaagent.jar"
"-Dotel.resource.attributes=service.name=counter-service"
Expand Down
2 changes: 1 addition & 1 deletion tutorial/instrumented/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

:deps {org.clojure/clojure {:mvn/version "1.11.1"}
ring/ring-jetty-adapter {:mvn/version "1.11.0"}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.5"}}
com.github.steffan-westcott/clj-otel-api {:mvn/version "0.2.6"}}

:aliases {:otel {:jvm-opts ["-javaagent:opentelemetry-javaagent.jar"
"-Dotel.resource.attributes=service.name=counter-service"
Expand Down

0 comments on commit 4616621

Please sign in to comment.