Skip to content

Commit

Permalink
bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wtsnjp committed Aug 15, 2021
1 parent 78e7a6f commit 607df4c
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright 2018-2020 Takuto ASAKURA (wtsnjp)
Copyright 2018-2021 Takuto ASAKURA (wtsnjp)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ This project has been supported by the [TeX Development Fund](https://www.tug.or

## License

Copyright 2018-2020 Takuto ASAKURA ([wtsnjp](https://twitter.com/wtsnjp))
Copyright 2018-2021 Takuto ASAKURA ([wtsnjp](https://twitter.com/wtsnjp))

This software is licensed under [the MIT license](./LICENSE).

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'pathname'
require 'optparse'

# basics
LLMK_VERSION = "0.2.0"
LLMK_VERSION = "1.0.0"
CTAN_MIRROR = "http://ctan.mirror.rafal.ca/systems/texlive/tlnet"

# woking/temporaly dirs
Expand Down
2 changes: 1 addition & 1 deletion doc/llmk.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Source: <https://github.com/wtsnjp/llmk>

## COPYRIGHT

Copyright 2018-2020 Takuto ASAKURA (wtsnjp).
Copyright 2018-2021 Takuto ASAKURA (wtsnjp).
License: The MIT License <https://opensource.org/licenses/mit-license>.
This is free software: you are free to change and redistribute it.

Expand Down
11 changes: 5 additions & 6 deletions doc/llmk.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
\title{llmk: Light {\LaTeX} Make}
\author{Takuto Asakura (wtsnjp)}
\subtitle{Reference Manual}
\date{v0.2.0\quad\today}
\date{v1.0.0\quad\today}
\keywords{llmk, build-tool, toml, lua, luatex}

\begin{document}
Expand Down Expand Up @@ -83,11 +83,10 @@ \subsection{Reporting bugs and requesting features}
If you do not want to use GitHub for some reasons, it is also fine to directly
send an email to the author (\email{[email protected]}).

The \prog{llmk} program is currently version \code{0.x} and still growing in
any aspect. At this moment, requests for new features are also welcome; the
author cannot promise to implement the requested features, but will happy to
take them into account. Before making a request, it is strongly recommended to
read the article about the design concept~\cite{asakura2020}.
Requests for new features are also welcome; the author cannot promise to
implement the requested features, but will happy to take them into account.
Before making a request, it is strongly recommended to read the article about
the design concept~\cite{asakura2020}.

\section{Command-line interface}

Expand Down
2 changes: 1 addition & 1 deletion examples/clean.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

% +++
% # This should be a comment
% llmk_version = "0.2"
% llmk_version = "1.0"
% latex = "lualatex"
% clean_files = ["%B.aux", "%B.log", "%B.ltjruby"]
% clobber_files = ["%B.pdf", "%B.synctex.gz"]
Expand Down
2 changes: 1 addition & 1 deletion examples/complex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

% +++
% # This should be a comment
% llmk_version = "0.2"
% llmk_version = "1.0"
% sequence = [ "latex", "latex", "latex", "dvipdf" ]
% max_repeat = 7
%
Expand Down
2 changes: 1 addition & 1 deletion examples/llmk.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is a simple example of llmk.toml.
# Public domain.

llmk_version = "0.2"
llmk_version = "1.0"
source = [ "simple.tex", "default.tex" ]
latex = "xelatex"
max_repeat = 3
2 changes: 1 addition & 1 deletion examples/platex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
% +++
% # This should be a comment
% latex = "platex"
% llmk_version = "0.2"
% llmk_version = "1.0"
% +++

\documentclass{article}
Expand Down
13 changes: 10 additions & 3 deletions llmk.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--
-- This is file `llmk.lua'.
--
-- Copyright 2018-2020 Takuto ASAKURA (wtsnjp)
-- Copyright 2018-2021 Takuto ASAKURA (wtsnjp)
-- GitHub: https://github.com/wtsnjp
-- Twitter: @wtsnjp
--
Expand Down Expand Up @@ -39,8 +39,8 @@ local M = {}

-- program information
M.prog_name = 'llmk'
M.version = '0.2.0'
M.copyright = 'Copyright 2018-2020'
M.version = '1.0.0'
M.copyright = 'Copyright 2018-2021'
M.author = 'Takuto ASAKURA (wtsnjp)'
M.llmk_toml = 'llmk.toml'

Expand Down Expand Up @@ -309,6 +309,13 @@ local function version_check(given_version)
major, minor, given_major, given_minor)
end

-- warn if the given mojor version is older than this program
if given_major < major then
llmk.util.err_print('warning',
'The specified llmk_version (v%d.%d) is older than this program (v%d.%d)',
given_major, given_minor, major, minor)
end

-- Note: no breaking change has been made (yet)
end

Expand Down
4 changes: 2 additions & 2 deletions spec/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
RSpec.describe "Showing version", :type => :aruba do
include_context "messages"

let(:version) { "0.2.0" }
let(:copyright) { "Copyright 2018-2020" }
let(:version) { "1.0.0" }
let(:copyright) { "Copyright 2018-2021" }

let(:version_text) do
<<~EXPECTED
Expand Down

0 comments on commit 607df4c

Please sign in to comment.