Skip to content

Commit

Permalink
Release workspace 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnezis committed Sep 30, 2024
1 parent a17d759 commit 5bcd78c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions workspace/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
## [v0.1.2](https://github.com/sportradar/elixir-workspace/tree/workspace/v0.1.2) (2024-09-30)

* `workspace.list`: support filtering by dependents through the `--dependent` flag. You
can now list all projects that are direct dependencies of a given project:

```bash
mix workspace.list --dependent my_project
```
```bash
mix workspace.list --dependent my_project
```

* `workspace.list`: support filtering by dependencies through the `--dependency`. Using this
flag you can list only those projects that have the given direct dependency:

```bash
mix workspace.list --dependency a_project
```
```bash
mix workspace.list --dependency a_project
```

* `workspace.list`: add `--maintainer` for filtering projects with the given maintainer

Expand Down
6 changes: 3 additions & 3 deletions workspace/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Workspace.MixProject do
use Mix.Project

@app :workspace
@version "0.1.1"
@version "0.1.2"
@repo_url "https://github.com/sportradar/elixir-workspace"

def project do
Expand Down Expand Up @@ -54,8 +54,8 @@ defmodule Workspace.MixProject do

defp deps do
[
{:cli_options, path: "../cli_options/"},
# {:cli_options, "~> 0.1.0"},
# {:cli_options, path: "../cli_options/"},
{:cli_options, "~> 0.1.2"},
{:nimble_options, "~> 1.1.1"},
{:jason, "~> 1.4.1", optional: true},
{:ex_doc, "== 0.34.1", only: :dev, runtime: false},
Expand Down

0 comments on commit 5bcd78c

Please sign in to comment.