diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 15:46:03 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-10-29 15:46:03 -0500 |
commit | 29be4c138ad21c4f4357acf1fba2918a61e6d6bd (patch) | |
tree | 35047e4da4174794a210ea19cd87b69df066c4c7 | |
parent | unbump (diff) | |
download | locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar.gz locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar.bz2 locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar.lz locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar.xz locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.tar.zst locusts-29be4c138ad21c4f4357acf1fba2918a61e6d6bd.zip |
version de-bump everything
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | docs/BEAM.md | 2 | ||||
-rw-r--r-- | gradle.properties | 2 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | mix.exs | 4 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 45d92b9..e88a3db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.14) -project(libocusts VERSION 1.0.0 DESCRIPTION "A C library that introduces locusts into your codebase" LANGUAGES C) +project(libocusts VERSION 0.0.0 DESCRIPTION "A C library that introduces locusts into your codebase" LANGUAGES C) include(GNUInstallDirs) @@ -4,4 +4,4 @@ version = 3 [[package]] name = "locusts" -version = "1.0.0" +version = "0.0.0" @@ -1,6 +1,6 @@ [package] name = "locusts" -version = "1.0.0" +version = "0.0.0" description = "A Rust library that introduces locusts into your codebase" authors = ["Matt Strapp <matt+locusts@mattstrapp.net>"] readme = "docs/Rust.md" diff --git a/configure.ac b/configure.ac index b35f6ab..2b13461 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libocusts], [1.0.0]) +AC_INIT([libocusts], [0.0.0]) AC_CONFIG_SRCDIR([src/locusts.c]) AC_CONFIG_MACRO_DIRS([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) diff --git a/docs/BEAM.md b/docs/BEAM.md index 69e11d3..5e547cb 100644 --- a/docs/BEAM.md +++ b/docs/BEAM.md @@ -15,7 +15,7 @@ by adding `locusts` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:locusts, "~> 1.0.0"} + {:locusts, "~> 0.0.0"} ] end ``` diff --git a/gradle.properties b/gradle.properties index 34886b5..e58965d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,4 @@ org.gradle.parallel=true org.gradle.caching=true -version=1.0.0-SNAPSHOT
\ No newline at end of file +version=0.0.0-SNAPSHOT
\ No newline at end of file diff --git a/meson.build b/meson.build index da41bfa..2b97ae7 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('locusts', 'c', version: '1.0.0', default_options: ['warning_level=3'], license: '0BSD') +project('locusts', 'c', version: '0.0.0', default_options: ['warning_level=3'], license: '0BSD') source = 'src/locusts.c' header = 'include/locusts.h' @@ -4,7 +4,7 @@ defmodule Locusts.MixProject do def project do [ app: :locusts, - version: "1.0.0", + version: "0.0.0", elixir: "~> 1.0", start_permanent: Mix.env() == :prod, deps: deps(), @@ -29,7 +29,7 @@ defmodule Locusts.MixProject do [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} - {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} + {:ex_doc, ">= 0.0.1", only: :dev, runtime: false} ] end diff --git a/package.json b/package.json index 452ff04..acdedf5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "locusts-monorepo", - "version": "1.0.0", + "version": "0.0.0", "devDependencies": { "@changesets/cli": "^2.27.9", "prettier": "^3.2.5", diff --git a/pyproject.toml b/pyproject.toml index cf963cc..d1de38d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "locusts-r-us" -version = "1.0.0" +version = "0.0.0" authors = [ { name = "Matt Strapp", email = "matt+locusts@mattstrapp.net"} ] |