<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jane Friedman</title>
	<atom:link href="http://janefriedman.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://janefriedman.com/</link>
	<description>Reporting on the book publishing industry</description>
	<lastBuildDate>Wed, 19 Aug 2026 11:47:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://janefriedman.com/wp-content/uploads/2014/12/Friedman-Icon-copy1-548f4b9d_site_icon-32x32.png</url>
	<title>Jane Friedman</title>
	<link>https://janefriedman.com/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title> Lit Circle: connecting readers with local author events</title>
		<link>https://janefriedman.com/lit-circle-connecting-readers-with-local-author-events/</link>
		
		<dc:creator><![CDATA[Jane Friedman]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 16:00:00 +0000</pubDate>
				<category><![CDATA[Tools and Services]]></category>
		<category><![CDATA[Premium Content]]></category>
		<guid isPermaLink="false">https://janefriedman.com/?p=118163</guid>

					<description><![CDATA[A former bookstore owner in Chicago has launched an online platform that connects readers with local author events and literary programming.]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-excerpt">
    <p>A former bookstore owner in Chicago has launched an online platform that connects readers with local author events and literary programming.</p>
  </div>
  <div class="mepr-unauthorized-message">
    <hr />
<p>This premium article is available to paid subscribers of Jane's newsletter. Here's what subscribers get:</p>
<ul>
<li>Publishing industry news that includes Jane’s reporting and analysis (weekly)</li>
<li>Access to more than 3,000 premium articles on this site, all searchable</li>
<li>Access to Jane’s private resource guides, continually updated</li>
</ul>
<h2><a href="https://janefriedman.com/subscribe-paid-newsletter/"><strong>Subscribe today.</strong></a></h2>
<p>Or login below if you're already a subscriber.</p>
<p><em>Wondering why some content isn't free? Did something change? <a href="https://janefriedman.com/why-isnt-all-of-the-content-on-this-site-free/">Here's an explanation.</a></em></p>
  </div>
  <div class="mepr-login-form-wrap">
            
<div class="mp_wrapper mp_login_form">
                  <!-- mp-login-form-start -->     <form name="mepr_loginform" id="mepr_loginform" class="mepr-form" action="https://janefriedman.com/login/" method="post">
            <div class="mp-form-row mepr_username">
        <div class="mp-form-label">
                              <label for="user_login">Username or E-mail</label>
        </div>
        <input type="text" name="log" id="user_login" value="" />
      </div>
      <div class="mp-form-row mepr_password">
        <div class="mp-form-label">
          <label for="user_pass">Password</label>
          <div class="mp-hide-pw">
            <input type="password" name="pwd" id="user_pass" value="" />
            <button type="button" class="button mp-hide-pw hide-if-no-js" data-toggle="0" aria-label="Show password">
              <span class="dashicons dashicons-visibility" aria-hidden="true"></span>
            </button>
          </div>
        </div>
      </div>
      
<div class="mp-form-row mepr_math_captcha">
    <div class="mp-form-label">
        <label for="mepr_math_quiz">
            <span id="mepr_math_captcha-6a8b9f370006a"></span>*
        </label>
    </div>

    <input type="text" name="mepr_math_quiz" id="mepr_math_quiz" value="" class="mepr-form-input" />
    <input type="hidden" name="mepr_math_data" value="en6pu3Es8I4OO69fzbworST33XeKemHTohjhTR0T8UU=" />

    <script>
    function mepr_base64_decode(encodedData) {
        var decodeUTF8string = function(str) {
            // Going backwards: from bytestream, to percent-encoding, to original string.
            return decodeURIComponent(str.split('').map(
                function(c) {
                    return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
                })
                .join('')
            )
        }

        if (typeof window !== 'undefined') {
            if (typeof window.atob !== 'undefined') {
                return decodeUTF8string(window.atob(encodedData))
            }
        } else {
            return new Buffer(encodedData, 'base64').toString('utf-8')
        }

        var b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
        var o1
        var o2
        var o3
        var h1
        var h2
        var h3
        var h4
        var bits
        var i = 0
        var ac = 0
        var dec = ''
        var tmpArr = []

        if (!encodedData) {
            return encodedData
        }

        encodedData += ''
        do {
            // unpack four hexets into three octets using index points in b64
            h1 = b64.indexOf(encodedData.charAt(i++))
            h2 = b64.indexOf(encodedData.charAt(i++))
            h3 = b64.indexOf(encodedData.charAt(i++))
            h4 = b64.indexOf(encodedData.charAt(i++))
            bits = h1 << 18 | h2 << 12 | h3 << 6 | h4
            o1 = bits >> 16 & 0xff
            o2 = bits >> 8 & 0xff
            o3 = bits & 0xff

            if (h3 === 64) {
                tmpArr[ac++] = String.fromCharCode(o1)
            } else if (h4 === 64) {
                tmpArr[ac++] = String.fromCharCode(o1, o2)
            } else {
                tmpArr[ac++] = String.fromCharCode(o1, o2, o3)
            }
        } while (i < encodedData.length)

        dec = tmpArr.join('')
        return decodeUTF8string(dec.replace(/\0+$/, ''))
    }

    jQuery(document).ready(function() {
        var el = document.getElementById("mepr_math_captcha-6a8b9f370006a")
        el.innerHTML = mepr_base64_decode("OSArIDIgZXF1YWxzPw==");
    });
    </script>
</div>
      <div>
        <label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label>
      </div>
      <div class="mp-spacer">&nbsp;</div>
      <div class="submit">
        <input type="submit" name="wp-submit" id="wp-submit" class="button-primary mepr-share-button " value="Log In" />
        <input type="hidden" name="redirect_to" value="/feed/" />
        <input type="hidden" name="mepr_process_login_form" value="true" />
        <input type="hidden" name="mepr_is_login_page" value="false" />
      </div>
    </form>
    <div class="mp-spacer">&nbsp;</div>
    <div class="mepr-login-actions">
        <a
          href="https://janefriedman.com/login/?action=forgot_password"
          title="Click here to reset your password"
        >
          Forgot Password        </a>
    </div>

      
    <!-- mp-login-form-end --> 
  </div>
      </div>
</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title> New agency: July First Literary</title>
		<link>https://janefriedman.com/new-agency-july-first-literary/</link>
		
		<dc:creator><![CDATA[Jane Friedman]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 16:00:00 +0000</pubDate>
				<category><![CDATA[Literary Agents]]></category>
		<category><![CDATA[Premium Content]]></category>
		<guid isPermaLink="false">https://janefriedman.com/?p=118161</guid>

					<description><![CDATA[Agent Brent Taylor has launched July First Literary, specializing in commercial fiction. They are not yet open to submissions.]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-excerpt">
    <p>Agent Brent Taylor has launched July First Literary, specializing in commercial fiction. They are not yet open to submissions.</p>
  </div>
  <div class="mepr-unauthorized-message">
    <hr />
<p>This premium article is available to paid subscribers of Jane's newsletter. Here's what subscribers get:</p>
<ul>
<li>Publishing industry news that includes Jane’s reporting and analysis (weekly)</li>
<li>Access to more than 3,000 premium articles on this site, all searchable</li>
<li>Access to Jane’s private resource guides, continually updated</li>
</ul>
<h2><a href="https://janefriedman.com/subscribe-paid-newsletter/"><strong>Subscribe today.</strong></a></h2>
<p>Or login below if you're already a subscriber.</p>
<p><em>Wondering why some content isn't free? Did something change? <a href="https://janefriedman.com/why-isnt-all-of-the-content-on-this-site-free/">Here's an explanation.</a></em></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title> Links of Interest: August 19, 2026</title>
		<link>https://janefriedman.com/links-of-interest-august-19-2026/</link>
		
		<dc:creator><![CDATA[Jane Friedman]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 16:00:00 +0000</pubDate>
				<category><![CDATA[Links of Interest]]></category>
		<category><![CDATA[Premium Content]]></category>
		<guid isPermaLink="false">https://janefriedman.com/?p=118145</guid>

					<description><![CDATA[Activity books are booming as screen-free entertainment, panic over Gen Z’s reading habits is overblown, and more recent news.]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-excerpt">
    <p>Activity books are booming as screen-free entertainment, panic over Gen Z’s reading habits is overblown, and more recent news.</p>
  </div>
  <div class="mepr-unauthorized-message">
    <hr />
<p>This premium article is available to paid subscribers of Jane's newsletter. Here's what subscribers get:</p>
<ul>
<li>Publishing industry news that includes Jane’s reporting and analysis (weekly)</li>
<li>Access to more than 3,000 premium articles on this site, all searchable</li>
<li>Access to Jane’s private resource guides, continually updated</li>
</ul>
<h2><a href="https://janefriedman.com/subscribe-paid-newsletter/"><strong>Subscribe today.</strong></a></h2>
<p>Or login below if you're already a subscriber.</p>
<p><em>Wondering why some content isn't free? Did something change? <a href="https://janefriedman.com/why-isnt-all-of-the-content-on-this-site-free/">Here's an explanation.</a></em></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title> Ingram officially launches competitor to Edelweiss and NetGalley</title>
		<link>https://janefriedman.com/ingram-officially-launches-competitor-to-edelweiss-and-netgalley/</link>
		
		<dc:creator><![CDATA[Jane Friedman]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 16:00:00 +0000</pubDate>
				<category><![CDATA[Publishing Industry Reporting]]></category>
		<category><![CDATA[Premium Content]]></category>
		<guid isPermaLink="false">https://janefriedman.com/?p=118143</guid>

					<description><![CDATA[Since Edelweiss changed hands recently and increased prices on publishers, there’s been an opening for a competitor to step into the space.]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-excerpt">
    <p>Since Edelweiss changed hands recently and increased prices on publishers, there’s been an opening for a competitor to step into the space.</p>
  </div>
  <div class="mepr-unauthorized-message">
    <hr />
<p>This premium article is available to paid subscribers of Jane's newsletter. Here's what subscribers get:</p>
<ul>
<li>Publishing industry news that includes Jane’s reporting and analysis (weekly)</li>
<li>Access to more than 3,000 premium articles on this site, all searchable</li>
<li>Access to Jane’s private resource guides, continually updated</li>
</ul>
<h2><a href="https://janefriedman.com/subscribe-paid-newsletter/"><strong>Subscribe today.</strong></a></h2>
<p>Or login below if you're already a subscriber.</p>
<p><em>Wondering why some content isn't free? Did something change? <a href="https://janefriedman.com/why-isnt-all-of-the-content-on-this-site-free/">Here's an explanation.</a></em></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title> On the List: Picking Daisies on Sundays by Liana Cincotti</title>
		<link>https://janefriedman.com/on-the-list-picking-daisies-on-sundays-by-liana-cincotti/</link>
		
		<dc:creator><![CDATA[E. J. Wenstrom]]></dc:creator>
		<pubDate>Wed, 19 Aug 2026 16:00:00 +0000</pubDate>
				<category><![CDATA[Bestsellers]]></category>
		<category><![CDATA[Premium Content]]></category>
		<guid isPermaLink="false">https://janefriedman.com/?p=118141</guid>

					<description><![CDATA[Cincotti strives to bring back the magic found in iconic early 2000s romantic comedies: a whimsical feel paired with wholesome, relatable characters.]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-excerpt">
    <p>Cincotti strives to bring back the magic found in iconic early 2000s romantic comedies: a whimsical feel paired with wholesome, relatable characters.</p>
  </div>
  <div class="mepr-unauthorized-message">
    <hr />
<p>This premium article is available to paid subscribers of Jane's newsletter. Here's what subscribers get:</p>
<ul>
<li>Publishing industry news that includes Jane’s reporting and analysis (weekly)</li>
<li>Access to more than 3,000 premium articles on this site, all searchable</li>
<li>Access to Jane’s private resource guides, continually updated</li>
</ul>
<h2><a href="https://janefriedman.com/subscribe-paid-newsletter/"><strong>Subscribe today.</strong></a></h2>
<p>Or login below if you're already a subscriber.</p>
<p><em>Wondering why some content isn't free? Did something change? <a href="https://janefriedman.com/why-isnt-all-of-the-content-on-this-site-free/">Here's an explanation.</a></em></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!-- plugin=object-cache-pro client=phpredis metric#hits=2627 metric#misses=22 metric#hit-ratio=99.2 metric#bytes=2319255 metric#prefetches=125 metric#store-reads=26 metric#store-writes=4 metric#store-hits=147 metric#store-misses=2 metric#sql-queries=35 metric#ms-total=336.45 metric#ms-cache=10.21 metric#ms-cache-avg=0.3522 metric#ms-cache-ratio=3.0 sample#redis-hits=1494923708 sample#redis-misses=37176998 sample#redis-hit-ratio=97.6 sample#redis-ops-per-sec=48 sample#redis-evicted-keys=0 sample#redis-used-memory=135445712 sample#redis-used-memory-rss=143253504 sample#redis-memory-fragmentation-ratio=1.1 sample#redis-connected-clients=2 sample#redis-tracking-clients=0 sample#redis-rejected-connections=0 sample#redis-keys=160845 -->
