Use lower case roles. Bump version

This commit is contained in:
Dan Milne
2020-08-21 15:58:23 +10:00
parent 9465254d0b
commit ffc11ceb94
2 changed files with 11 additions and 7 deletions

View File

@@ -59,27 +59,31 @@ module Paapi
end end
def actors def actors
contributors_of 'Actor' contributors_of 'actor'
end end
def artists def artists
contributors_of 'Artist' contributors_of 'artist'
end end
def authors def authors
contributors_of 'Author' contributors_of 'author'
end
def director
contributors_of 'director'
end end
def illustrators def illustrators
contributors_of 'Illustrator' contributors_of 'illustrator'
end end
def narrators def narrators
contributors_of 'Narrator' contributors_of 'narrator'
end end
def publishers def publishers
contributors_of 'Publisher' contributors_of 'publisher'
end end
def languages def languages

View File

@@ -1,3 +1,3 @@
module Paapi module Paapi
VERSION = '0.1.1' VERSION = '0.1.2'
end end