Skip to content

Commit db808e5

Browse files
committed
Cut release 1.0
1 parent ad9fa7d commit db808e5

File tree

7 files changed

+26
-11
lines changed

7 files changed

+26
-11
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
name: create-release
2222
runs-on: ubuntu-latest
2323
# Un-comment this for testing
24-
env:
25-
RELEASE_VERSION: 0.3.1
24+
# env:
25+
# RELEASE_VERSION: 0.3.1
2626
steps:
2727
- name: Create artifacts directory
2828
run: mkdir artifacts

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1+
2024-09-02 Michael Herstine <[email protected]>
2+
3+
Cut release 1.0
4+
5+
Touched-up the README
6+
17
2024-09-01 Michael Herstine <[email protected]>
28

9+
Forcing release 0.3.1
10+
11+
Patch the release workflow
12+
313
Cut release 0.3.1
414

515
Add a Texinfo manual to the project.

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
elmpd News -- history of user-visible changes -*- outline -*-
22

3+
* 1.0 releases
4+
5+
** 1.0.0
6+
7+
First "1.0" release.
38
* 0.3 builds
49

510
** 0.3.1

README.org

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#+TITLE: elmpd
22
#+DESCRIPTION: A tight, async mpd library in Emacs Lisp
3-
#+DATE: <2024-09-02 Mon 07:53>
3+
#+DATE: <2024-09-02 Mon 08:14>
44
#+AUTHOR: sp1ff
55
66
#+AUTODATE: t
@@ -26,14 +26,14 @@ The simplest way to install [[https://github.com/sp1ff/elmpd][elmpd]] is from [[
2626
You can also install the package manually. Download the .tar file from [[https://github.com/sp1ff/elmpd/releases][Github]] or my personal [[https://www.unwoundstack/distros.html][page]] and say:
2727

2828
#+BEGIN_SRC elisp
29-
(package-install-file "elmpd-0.3.1.tar")
29+
(package-install-file "elmpd-1.0.0.tar")
3030
#+END_SRC
3131

3232
I'm now making GitHub releases that include Autotools source distributions:
3333

3434
#+BEGIN_SRC bash
35-
curl -L --output elmpd-0.3.1.tar.gz https://github.com/sp1ff/elmpd/releases/download/0.3.1/elmpd-0.3.1.tar.gz
36-
tar xf elmpd-0.3.1.tar.gz && cd elmpd-0.3.1
35+
curl -L --output elmpd-1.0.0.tar.gz https://github.com/sp1ff/elmpd/releases/download/1.0.0/elmpd-1.0.0.tar.gz
36+
tar xf elmpd-1.0.0.tar.gz && cd elmpd-1.0.0
3737
./configure && make all check
3838
sudo make install
3939
#+END_SRC

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([elmpd], [0.3.1], [sp1ff@poboxcom], [elmpd], [https://github.com/sp1ff/elmpd])
1+
AC_INIT([elmpd], [1.0.0], [sp1ff@poboxcom], [elmpd], [https://github.com/sp1ff/elmpd])
22
AC_CONFIG_AUX_DIR([build-aux])
33
AC_CONFIG_SRCDIR([elmpd.el])
44
AM_INIT_AUTOMAKE([-Wall -Werror gnits std-options dist-xz dist-zstd])

doc/version.texi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@set UPDATED 2 September 2024
22
@set UPDATED-MONTH September 2024
3-
@set EDITION 0.3.1
4-
@set VERSION 0.3.1
3+
@set EDITION 1.0.0
4+
@set VERSION 1.0.0

elmpd.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
;; Copyright (C) 2020-2024 Michael Herstine <[email protected]>
44

55
;; Author: Michael Herstine <[email protected]>
6-
;; Version: 0.3.1
6+
;; Version: 1.0.0
77
;; Keywords: comm
88
;; Package-Requires: ((emacs "25.1"))
99
;; URL: https://github.com/sp1ff/elmpd
@@ -67,7 +67,7 @@
6767

6868
(require 'cl-lib)
6969

70-
(defconst elmpd-version "0.3.1")
70+
(defconst elmpd-version "1.0.0")
7171

7272
;;; Logging-- useful for debugging asynchronous functions
7373

0 commit comments

Comments
 (0)